| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspWrmRgstrParam
- *
- * @author lune
- * @date 2020-8-18
- */
- public class BisInspWrmRgstrParam extends PageParam implements Serializable {
- @ApiModelProperty(value = "主键id", position = 1)
- private String id;
- @ApiModelProperty(value = "督查对象ID", position = 2)
- private String objId;
- @ApiModelProperty(value = "行政区编码", position = 3)
- private String adCode;
- @ApiModelProperty(value = "行政区划名称", position = 4)
- private String adName;
- @ApiModelProperty(value = "行政区划全称", position = 5)
- private String adFullName;
- @ApiModelProperty(value = "详细地址", position = 6)
- private String loc;
- @ApiModelProperty(value = "经度", position = 7)
- private Double centerX;
- @ApiModelProperty(value = "纬度", position = 8)
- private Double centerY;
- @ApiModelProperty(value = "高德经度", position = 9)
- private Double gdX;
- @ApiModelProperty(value = "高德纬度", position = 10)
- private Double gdY;
- @ApiModelProperty(value = "被检查单位名称", position = 11)
- private String bChkUnit;
- @ApiModelProperty(value = "联系人", position = 12)
- private String contact;
- @ApiModelProperty(value = "联系人电话", position = 13)
- private String contactTel;
- @ApiModelProperty(value = "负责人", position = 14)
- private String principal;
- @ApiModelProperty(value = "负责人电话", position = 15)
- private String principalTel;
- @ApiModelProperty(value = "备注", position = 16)
- private String note;
- @ApiModelProperty(value = "检查单位", position = 17)
- private String chkUnit;
- @ApiModelProperty(value = "检查人员", position = 18)
- private String chkPers;
- @ApiModelProperty(value = "检查时间", position = 19)
- private Date chkTm;
- @ApiModelProperty(value = "取用水管控及地下水监管情况填报状态(0:未填报;1:未完成;2:已完成)", position = 20)
- private String intInfoStat;
- @ApiModelProperty(value = "取水口取水监管情况填报状态(0:未填报;1:未完成;2:已完成)", position = 21)
- private String wintStat;
- @ApiModelProperty(value = "创建人", position = 22)
- private String persId;
- @ApiModelProperty(value = "督查组ID", position = 23)
- private String groupId;
- @ApiModelProperty(value = "创建时间", position = 24)
- private Date intm;
- @ApiModelProperty(value = "更新时间", position = 25)
- private Date uptm;
- @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", position = 26)
- private String state;
- public BisInspWrmRgstrParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public String getLoc() {
- return loc;
- }
- public void setLoc(String loc) {
- this.loc = loc;
- }
- public Double getCenterX() {
- return centerX;
- }
- public void setCenterX(Double centerX) {
- this.centerX = centerX;
- }
- public Double getCenterY() {
- return centerY;
- }
- public void setCenterY(Double centerY) {
- this.centerY = centerY;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- public String getBChkUnit() {
- return bChkUnit;
- }
- public void setBChkUnit(String bChkUnit) {
- this.bChkUnit = bChkUnit;
- }
- public String getContact() {
- return contact;
- }
- public void setContact(String contact) {
- this.contact = contact;
- }
- public String getContactTel() {
- return contactTel;
- }
- public void setContactTel(String contactTel) {
- this.contactTel = contactTel;
- }
- public String getPrincipal() {
- return principal;
- }
- public void setPrincipal(String principal) {
- this.principal = principal;
- }
- public String getPrincipalTel() {
- return principalTel;
- }
- public void setPrincipalTel(String principalTel) {
- this.principalTel = principalTel;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- 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 getIntInfoStat() {
- return intInfoStat;
- }
- public void setIntInfoStat(String intInfoStat) {
- this.intInfoStat = intInfoStat;
- }
- public String getWintStat() {
- return wintStat;
- }
- public void setWintStat(String wintStat) {
- this.wintStat = wintStat;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getGroupId() {
- return groupId;
- }
- 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;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- }
|