| | |
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import lombok.Data;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | @Data
|
| | | @TableName("prevent_risk_danger_check_and_measure")
|
| | | public class PreventRiskDangerCheckAndMeasure {
|
| | |
|
| | |
| | | * 排查结果:0-正常,1-存在隐患,2-未处理,3其他
|
| | | * */
|
| | | private Byte checkResult;
|
| | | /**
|
| | | * 排查上报信息
|
| | | * */
|
| | | private String checkDesc;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public Long getDangerCheckPointId() {
|
| | | return dangerCheckPointId;
|
| | | }
|
| | |
|
| | | public void setDangerCheckPointId(Long dangerCheckPointId) {
|
| | | this.dangerCheckPointId = dangerCheckPointId;
|
| | | }
|
| | |
|
| | | public Long getCheckId() {
|
| | | return checkId;
|
| | | }
|
| | |
|
| | | public void setCheckId(Long checkId) {
|
| | | this.checkId = checkId;
|
| | | }
|
| | |
|
| | | public Long getBaseCheckPointId() {
|
| | | return baseCheckPointId;
|
| | | }
|
| | |
|
| | | public void setBaseCheckPointId(Long baseCheckPointId) {
|
| | | this.baseCheckPointId = baseCheckPointId;
|
| | | }
|
| | |
|
| | | public Long getControlMeasureId() {
|
| | | return controlMeasureId;
|
| | | }
|
| | |
|
| | | public void setControlMeasureId(Long controlMeasureId) {
|
| | | this.controlMeasureId = controlMeasureId;
|
| | | }
|
| | |
|
| | | public String getCheckContent() {
|
| | | return checkContent;
|
| | | }
|
| | |
|
| | | public void setCheckContent(String checkContent) {
|
| | | this.checkContent = checkContent;
|
| | | }
|
| | |
|
| | | public Byte getCheckResult() {
|
| | | return checkResult;
|
| | | }
|
| | |
|
| | | public void setCheckResult(Byte checkResult) {
|
| | | this.checkResult = checkResult;
|
| | | }
|
| | | }
|