| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspSamrmpRgstr
- *
- * @author lune
- * @date 2020-9-11
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspSamrmpRgstr extends BaseBean 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 prjId;
- @ApiModelProperty(value="工程项目名称", position = 4)
- private String prjName;
- @ApiModelProperty(value="所在河流", position = 5)
- private String rvName;
- @ApiModelProperty(value="规划河长(km)", position = 4)
- private String rvLong;
- @ApiModelProperty(value="规划总投资(万元)", position = 5)
- private String pgi;
- @ApiModelProperty(value="行政区编码", position = 6)
- private String adCode;
- @ApiModelProperty(value="行政区域描述", position = 7)
- private String adName;
- @ApiModelProperty(value="所在位置详细描述信息", position = 8)
- private String addr;
- @ApiModelProperty(value="PC经度", position = 9)
- private Double centerX;
- @ApiModelProperty(value="PC纬度", position = 10)
- private Double centerY;
- @ApiModelProperty(value="高德经度", position = 11)
- private Double gdX;
- @ApiModelProperty(value="高德纬度", position = 12)
- private Double gdY;
- @ApiModelProperty(value="中小河流治理项目抽查情况填报状态(0:未填报;1:填报中;2:已填报)", position = 13)
- private String smrmpState;
- @ApiModelProperty(value="督查状态(0:未督查;2:督查中;3:已督查)", position = 14)
- private String state;
- @ApiModelProperty(value="小组组长", position = 15)
- private String groupLeader;
- @ApiModelProperty(value="小组组长电话", position = 16)
- private String groupLeaderTel;
- @ApiModelProperty(value="记录人员ID", position = 17)
- private String recPersId;
- @ApiModelProperty(value="记录人员名称", position = 18)
- private String recPers;
- @ApiModelProperty(value="记录人员电话", position = 19)
- private String recPersTel;
- @ApiModelProperty(value="创建时间", position = 20)
- private Date intm;
- @ApiModelProperty(value="最后修改时间", position = 21)
- private Date uptm;
- @ApiModelProperty(value="备注", position = 22)
- private String note;
- private String groupName;
- public BisInspSamrmpRgstr() {
- }
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- public String getRvLong() {
- return rvLong;
- }
- public void setRvLong(String rvLong) {
- this.rvLong = rvLong;
- }
- public String getPgi() {
- return pgi;
- }
- public void setPgi(String pgi) {
- this.pgi = pgi;
- }
- 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 getPrjId() {
- return prjId;
- }
- public void setPrjId(String prjId) {
- this.prjId = prjId;
- }
- public String getPrjName() {
- return prjName;
- }
- public void setPrjName(String prjName) {
- this.prjName = prjName;
- }
- public String getRvName() {
- return rvName;
- }
- public void setRvName(String rvName) {
- this.rvName = rvName;
- }
- 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 getAddr() {
- return addr;
- }
- public void setAddr(String addr) {
- this.addr = addr;
- }
- 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 getSmrmpState() {
- return smrmpState;
- }
- public void setSmrmpState(String smrmpState) {
- this.smrmpState = smrmpState;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getGroupLeader() {
- return groupLeader;
- }
- public void setGroupLeader(String groupLeader) {
- this.groupLeader = groupLeader;
- }
- public String getGroupLeaderTel() {
- return groupLeaderTel;
- }
- public void setGroupLeaderTel(String groupLeaderTel) {
- this.groupLeaderTel = groupLeaderTel;
- }
- public String getRecPersId() {
- return recPersId;
- }
- public void setRecPersId(String recPersId) {
- this.recPersId = recPersId;
- }
- public String getRecPers() {
- return recPers;
- }
- public void setRecPers(String recPers) {
- this.recPers = recPers;
- }
- public String getRecPersTel() {
- return recPersTel;
- }
- public void setRecPersTel(String recPersTel) {
- this.recPersTel = recPersTel;
- }
- 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 "BisInspSamrmpRgstr [" + "id=" + id + ", objId=" + objId + ", prjId=" + prjId + ", prjName=" + prjName + ", rvName=" + rvName + ", adCode=" + adCode + ", adName=" + adName + ", addr=" + addr + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", smrmpState=" + smrmpState + ", state=" + state + ", groupLeader=" + groupLeader + ", groupLeaderTel=" + groupLeaderTel + ", recPersId=" + recPersId + ", recPers=" + recPers + ", recPersTel=" + recPersTel + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
- }
- }
|