| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- package cn.com.goldenwater.dcproj.model;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspWtuntRgstr
- *
- * @author lune
- * @date 2020-8-17
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspWtuntRgstr extends WtuntBase implements Serializable {
- @ApiModelProperty(value = "主键ID", position = 1)
- private String id;
- @ApiModelProperty(value = "*督查对象ID", position = 2)
- private String objId;
- @ApiModelProperty(value = "单位ID", position = 3)
- private String wtuntId;
- @ApiModelProperty(value = "*检查单位", position = 19)
- private String chkUnit;
- @ApiModelProperty(value = "*检查人员", position = 20)
- private String chkPers;
- @ApiModelProperty(value = "*检查时间", position = 21)
- private Date chkTm;
- @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", position = 22)
- private String state;
- @ApiModelProperty(value = "用水单位节约用水情况填报状态(0:未填报;1:未完成;2:已完成)", position = 23)
- private String wtuntStat;
- @ApiModelProperty(value = "创建人", position = 24)
- private String persId;
- @ApiModelProperty(value = "督查组ID", position = 25)
- private String groupId;
- @ApiModelProperty(value = "创建时间", position = 26)
- private Date intm;
- @ApiModelProperty(value = "修改时间", position = 27)
- private Date uptm;
- public BisInspWtuntRgstr() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getObjId() {
- return objId;
- }
- @Override
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getWtuntId() {
- return wtuntId;
- }
- public void setWtuntId(String wtuntId) {
- this.wtuntId = wtuntId;
- }
- public String getChkUnit() {
- return chkUnit;
- }
- public void setChkUnit(String chkUnit) {
- this.chkUnit = chkUnit;
- }
- public String getChkPers() {
- return chkPers;
- }
- public void setChkPers(String chkPers) {
- this.chkPers = chkPers;
- }
- public Date getChkTm() {
- return chkTm;
- }
- public void setChkTm(Date chkTm) {
- this.chkTm = chkTm;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getWtuntStat() {
- return wtuntStat;
- }
- public void setWtuntStat(String wtuntStat) {
- this.wtuntStat = wtuntStat;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- @Override
- public String getGroupId() {
- return groupId;
- }
- @Override
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspWtuntRgstr{" +
- "id='" + id + '\'' +
- ", objId='" + objId + '\'' +
- ", wtuntId='" + wtuntId + '\'' +
- ", chkUnit='" + chkUnit + '\'' +
- ", chkPers='" + chkPers + '\'' +
- ", chkTm=" + chkTm +
- ", state='" + state + '\'' +
- ", wtuntStat='" + wtuntStat + '\'' +
- ", persId='" + persId + '\'' +
- ", groupId='" + groupId + '\'' +
- ", intm=" + intm +
- ", uptm=" + uptm +
- "} " + super.toString();
- }
- }
|