| | |
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | @TableName("prevent_risk_unit_uuid")
|
| | | public class PreventRiskUnitUuid {
|
| | |
|
| | |
| | | * */
|
| | | private String riskUnitUuid;
|
| | | /**
|
| | | * 删除标识
|
| | | * */
|
| | | private Byte deleteStatus;
|
| | | * 同步时间
|
| | | */
|
| | | private Date reportTime;
|
| | | /**
|
| | | * 同步数据修改时间
|
| | | */
|
| | | private Date updateReportDataTime;
|
| | | /**
|
| | | * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
|
| | | */
|
| | | private Byte reportStatus;
|
| | | /**
|
| | | * 上报开关 1-上报;2-不上报
|
| | | */
|
| | | private Byte reportSwitch;
|
| | |
|
| | | public Byte getDeleteStatus() {
|
| | | return deleteStatus;
|
| | | public Date getReportTime() {
|
| | | return reportTime;
|
| | | }
|
| | |
|
| | | public void setDeleteStatus(Byte deleteStatus) {
|
| | | this.deleteStatus = deleteStatus;
|
| | | public void setReportTime(Date reportTime) {
|
| | | this.reportTime = reportTime;
|
| | | }
|
| | |
|
| | | public Date getUpdateReportDataTime() {
|
| | | return updateReportDataTime;
|
| | | }
|
| | |
|
| | | public void setUpdateReportDataTime(Date updateReportDataTime) {
|
| | | this.updateReportDataTime = updateReportDataTime;
|
| | | }
|
| | |
|
| | | public Byte getReportStatus() {
|
| | | return reportStatus;
|
| | | }
|
| | |
|
| | | public void setReportStatus(Byte reportStatus) {
|
| | | this.reportStatus = reportStatus;
|
| | | }
|
| | |
|
| | | public Byte getReportSwitch() {
|
| | | return reportSwitch;
|
| | | }
|
| | |
|
| | | public void setReportSwitch(Byte reportSwitch) {
|
| | | this.reportSwitch = reportSwitch;
|
| | | }
|
| | |
|
| | | public Long getId() {
|