| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- 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:BisInspRsvrSdDuty
- *
- * @author lhc
- * @date 2022-3-14
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspRsvrSdDuty extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 督查登记ID
- @ApiModelProperty(value = "督查登记ID", name = "rgstrId")
- private String rgstrId;
- // 是否落实行政责任人
- @ApiModelProperty(value = "是否落实行政责任人", name = "isAdmnDuty")
- private String isAdmnDuty;
- // 1.行政责任人是否参加过岗位培训
- @ApiModelProperty(value = "1.行政责任人是否参加过岗位培训", name = "isAdmnTrain")
- private String isAdmnTrain;
- // 2.行政责任人履责情况是否较好
- @ApiModelProperty(value = "2.行政责任人履责情况是否较好", name = "isAdmnFunc")
- private String isAdmnFunc;
- // 是否落实技术责任人
- @ApiModelProperty(value = "是否落实技术责任人", name = "isTchDuty")
- private String isTchDuty;
- // 1.技术责任人是否参加过岗位培训
- @ApiModelProperty(value = "1.技术责任人是否参加过岗位培训", name = "isTchTrain")
- private String isTchTrain;
- // 2.技术责任人履责情况是否较好
- @ApiModelProperty(value = "2.技术责任人履责情况是否较好", name = "isTchFunc")
- private String isTchFunc;
- // 是否落实巡查责任人
- @ApiModelProperty(value = "是否落实巡查责任人", name = "isChkDuty")
- private String isChkDuty;
- // 1.巡查责任人是否参加过岗位培训
- @ApiModelProperty(value = "1.巡查责任人是否参加过岗位培训", name = "isChkTrain")
- private String isChkTrain;
- // 2.巡查责任人履责情况是否较好
- @ApiModelProperty(value = "2.巡查责任人履责情况是否较好", name = "isChkFunc")
- private String isChkFunc;
- // 数据状态
- @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;
- // 督查状态(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 BisInspRsvrSdDuty() {
- }
- 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 getIsAdmnDuty() {
- return isAdmnDuty;
- }
- public void setIsAdmnDuty(String isAdmnDuty) {
- this.isAdmnDuty = isAdmnDuty;
- }
- public String getIsAdmnTrain() {
- return isAdmnTrain;
- }
- public void setIsAdmnTrain(String isAdmnTrain) {
- this.isAdmnTrain = isAdmnTrain;
- }
- public String getIsAdmnFunc() {
- return isAdmnFunc;
- }
- public void setIsAdmnFunc(String isAdmnFunc) {
- this.isAdmnFunc = isAdmnFunc;
- }
- public String getIsTchDuty() {
- return isTchDuty;
- }
- public void setIsTchDuty(String isTchDuty) {
- this.isTchDuty = isTchDuty;
- }
- public String getIsTchTrain() {
- return isTchTrain;
- }
- public void setIsTchTrain(String isTchTrain) {
- this.isTchTrain = isTchTrain;
- }
- public String getIsTchFunc() {
- return isTchFunc;
- }
- public void setIsTchFunc(String isTchFunc) {
- this.isTchFunc = isTchFunc;
- }
- public String getIsChkDuty() {
- return isChkDuty;
- }
- public void setIsChkDuty(String isChkDuty) {
- this.isChkDuty = isChkDuty;
- }
- public String getIsChkTrain() {
- return isChkTrain;
- }
- public void setIsChkTrain(String isChkTrain) {
- this.isChkTrain = isChkTrain;
- }
- public String getIsChkFunc() {
- return isChkFunc;
- }
- public void setIsChkFunc(String isChkFunc) {
- this.isChkFunc = isChkFunc;
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspRsvrSdDuty [" + "id=" + id + ", rgstrId=" + rgstrId + ", isAdmnDuty=" + isAdmnDuty + ", isAdmnTrain=" + isAdmnTrain + ", isAdmnFunc=" + isAdmnFunc + ", isTchDuty=" + isTchDuty + ", isTchTrain=" + isTchTrain + ", isTchFunc=" + isTchFunc + ", isChkDuty=" + isChkDuty + ", isChkTrain=" + isChkTrain + ", isChkFunc=" + isChkFunc + ", dataStat=" + dataStat + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
- }
- }
|