| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- 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;
- /**
- * BisInspKeyRegisterSectionParam
- *
- * @author lhc
- * @date 2019-4-20
- */
- public class BisInspKeyRegisterSectionParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 登记表ID
- @ApiParam(name = "登记表ID")
- @ApiModelProperty(value = "登记表ID", name = "regId")
- private String regId;
- // 督查对象ID
- @ApiParam(name = "督查对象ID")
- @ApiModelProperty(value = "督查对象ID", name = "objId")
- private String objId;
- // 标段名称
- @ApiParam(name = "标段名称")
- @ApiModelProperty(value = "标段名称", name = "nm")
- private String nm;
- // 所在行政区代码
- @ApiParam(name = "所在行政区代码")
- @ApiModelProperty(value = "所在行政区代码", name = "adCode")
- private String adCode;
- // 所属流域
- @ApiParam(name = "所属流域")
- @ApiModelProperty(value = "所属流域", name = "orgId")
- private String orgId;
- // 高德经度
- @ApiParam(name = "高德经度")
- @ApiModelProperty(value = "高德经度", name = "lgtd")
- private Double lgtd;
- // 高德纬度
- @ApiParam(name = "高德纬度")
- @ApiModelProperty(value = "高德纬度", name = "lttd")
- private Double lttd;
- // PC经度
- @ApiParam(name = "PC经度")
- @ApiModelProperty(value = "PC经度", name = "lgtdPc")
- private Double lgtdPc;
- // PC纬度
- @ApiParam(name = "PC纬度")
- @ApiModelProperty(value = "PC纬度", name = "lttdPc")
- private Double lttdPc;
- // 记录人员ID
- @ApiParam(name = "记录人员ID")
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 备注
- @ApiParam(name = "备注")
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- public BisInspKeyRegisterSectionParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRegId() {
- return regId;
- }
- public void setRegId(String regId) {
- this.regId = regId;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- 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;
- }
- }
|