| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspRsvrSdRpr
- *
- * @author lhc
- * @date 2022-3-14
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspRsvrSdRpr extends BaseBean implements Serializable {
- // 2.是否对大坝进行安全监测、采集监测数据(如有要求)
- @ApiModelProperty(value = "2.是否对大坝进行安全监测、采集监测数据(如有要求)", name = "isMontData")
- private String isMontData;
- // 1.是否按要求进行日常维护
- @ApiModelProperty(value = "1.是否按要求进行日常维护", name = "isNmorlRun")
- private String isNmorlRun;
- // 2.对影响大坝安全的白蚁危害等安全隐患是否及时进行处理
- @ApiModelProperty(value = "2.对影响大坝安全的白蚁危害等安全隐患是否及时进行处理", name = "isDngChk")
- private String isDngChk;
- // 数据状态
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- // 记录人员ID
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 备注
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 督查登记ID
- @ApiModelProperty(value = "督查登记ID", name = "rgstrId")
- private String rgstrId;
- // 1.巡查(巡检)通道是否满足巡查(巡检)需要
- @ApiModelProperty(value = "1.巡查(巡检)通道是否满足巡查(巡检)需要", name = "isRoadChk")
- private String isRoadChk;
- // 督查状态(0:未督查;1:督查中;2:已督查)
- @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state2")
- private String state;
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public BisInspRsvrSdRpr() {
- }
- public String getIsMontData() {
- return isMontData;
- }
- public void setIsMontData(String isMontData) {
- this.isMontData = isMontData;
- }
- public String getIsNmorlRun() {
- return isNmorlRun;
- }
- public void setIsNmorlRun(String isNmorlRun) {
- this.isNmorlRun = isNmorlRun;
- }
- public String getIsDngChk() {
- return isDngChk;
- }
- public void setIsDngChk(String isDngChk) {
- this.isDngChk = isDngChk;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getIsRoadChk() {
- return isRoadChk;
- }
- public void setIsRoadChk(String isRoadChk) {
- this.isRoadChk = isRoadChk;
- }
- @Override
- public String toString() {
- return "BisInspRsvrSdRpr [" + "isMontData=" + isMontData + ", isNmorlRun=" + isNmorlRun + ", isDngChk=" + isDngChk + ", dataStat=" + dataStat + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", id=" + id + ", rgstrId=" + rgstrId + ", isRoadChk=" + isRoadChk + "]";
- }
- }
|