| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- 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:BisInspWtgtRgstr
- *
- * @author lhc
- * @date 2020-9-18
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspWtgtRgstr extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 督查对象ID
- @ApiModelProperty(value = "督查对象ID", name = "objId")
- private String objId;
- // 单位名称
- @ApiModelProperty(value = "单位名称", name = "depName")
- private String depName;
- // 所在地行政区编码
- @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
- private String adCode;
- // 所在地行政区
- @ApiModelProperty(value = "所在地行政区", name = "adName")
- private String adName;
- // 取水许可证号
- @ApiModelProperty(value = "取水许可证号", name = "wintCode")
- private String wintCode;
- // 联系人
- @ApiModelProperty(value = "联系人", name = "depPers")
- private String depPers;
- // 联系电话
- @ApiModelProperty(value = "联系电话", name = "depPersTel")
- private String depPersTel;
- // 单位地址
- @ApiModelProperty(value = "单位地址", name = "loc")
- private String loc;
- // 经度
- @ApiModelProperty(value = "经度", name = "centerX")
- private Double centerX;
- // 纬度
- @ApiModelProperty(value = "纬度", name = "centerY")
- private Double centerY;
- // 高德经度
- @ApiModelProperty(value = "高德经度", name = "gdX")
- private Double gdX;
- // 高德纬度
- @ApiModelProperty(value = "高德纬度", name = "gdY")
- private Double gdY;
- // 取水许可和水资源费征收状态
- @ApiModelProperty(value = "取水许可和水资源费征收状态", name = "payState")
- private String payState;
- // 计划用水和定额管理状态
- @ApiModelProperty(value = "计划用水和定额管理状态", name = "planState")
- private String planState;
- // 状态
- @ApiModelProperty(value = "状态", name = "state")
- private String state;
- // 创建人
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 督查组ID
- @ApiModelProperty(value = "督查组ID", name = "groupId")
- private String groupId;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- @ApiModelProperty(value = "负责人", name = "utLead")
- private String utLead;
- @ApiModelProperty(value = "负责人电话", position = 19)
- private String principalTel;
- @ApiModelProperty(value = "修改时间", position = 20)
- private String note;
- //组名称
- private String groupName;
- public BisInspWtgtRgstr() {
- }
- public String getUtLead() {
- return utLead;
- }
- public void setUtLead(String utLead) {
- this.utLead = utLead;
- }
- 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 getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- 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 getWintCode() {
- return wintCode;
- }
- public void setWintCode(String wintCode) {
- this.wintCode = wintCode;
- }
- public String getDepPers() {
- return depPers;
- }
- public void setDepPers(String depPers) {
- this.depPers = depPers;
- }
- public String getDepPersTel() {
- return depPersTel;
- }
- public void setDepPersTel(String depPersTel) {
- this.depPersTel = depPersTel;
- }
- 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 getPayState() {
- return payState;
- }
- public void setPayState(String payState) {
- this.payState = payState;
- }
- public String getPlanState() {
- return planState;
- }
- public void setPlanState(String planState) {
- this.planState = planState;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- 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;
- }
- @Override
- public String getGroupId() {
- return groupId;
- }
- @Override
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspWtgtRgstr [" + "id=" + id + ", objId=" + objId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", wintCode=" + wintCode + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", payState=" + payState + ", planState=" + planState + ", state=" + state + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", groupId=" + groupId + ", dataStat=" + dataStat + "]";
- }
- }
|