| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- 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;
- /**
- * AttCdepBaseParam
- *
- * @author lhc
- * @date 2020-11-19
- */
- public class AttCdepBaseParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 单位编码
- @ApiParam(name = "单位编码")
- @ApiModelProperty(value = "单位编码", name = "depCode")
- private String depCode;
- // 单位名称
- @ApiParam(name = "单位名称")
- @ApiModelProperty(value = "单位名称", name = "depName")
- private String depName;
- // 详细地址
- @ApiParam(name = "详细地址")
- @ApiModelProperty(value = "详细地址", name = "loc")
- private String loc;
- // 行政区划编码
- @ApiParam(name = "行政区划编码")
- @ApiModelProperty(value = "行政区划编码", name = "adCode")
- private String adCode;
- // 行政区划名称
- @ApiParam(name = "行政区划名称")
- @ApiModelProperty(value = "行政区划名称", name = "adName")
- private String adName;
- // 单位负责人
- @ApiParam(name = "单位负责人")
- @ApiModelProperty(value = "单位负责人", name = "principal")
- private String principal;
- // 单位联系人电话
- @ApiParam(name = "单位联系人电话")
- @ApiModelProperty(value = "单位联系人电话", name = "contactTel")
- private String contactTel;
- // 单位联系人
- @ApiParam(name = "单位联系人")
- @ApiModelProperty(value = "单位联系人", name = "contact")
- private String contact;
- // 经度
- @ApiParam(name = "经度")
- @ApiModelProperty(value = "经度", name = "centerX")
- private Double centerX;
- // 纬度
- @ApiParam(name = "纬度")
- @ApiModelProperty(value = "纬度", name = "centerY")
- private Double centerY;
- // 高德经度
- @ApiParam(name = "高德经度")
- @ApiModelProperty(value = "高德经度", name = "gdX")
- private Double gdX;
- // 高德纬度
- @ApiParam(name = "高德纬度")
- @ApiModelProperty(value = "高德纬度", name = "gdY")
- private Double gdY;
- // 创建人
- @ApiParam(name = "创建人")
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- public AttCdepBaseParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getDepCode() {
- return depCode;
- }
- public void setDepCode(String depCode) {
- this.depCode = depCode;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getLoc() {
- return loc;
- }
- public void setLoc(String loc) {
- this.loc = loc;
- }
- 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 getPrincipal() {
- return principal;
- }
- public void setPrincipal(String principal) {
- this.principal = principal;
- }
- public String getContactTel() {
- return contactTel;
- }
- public void setContactTel(String contactTel) {
- this.contactTel = contactTel;
- }
- public String getContact() {
- return contact;
- }
- public void setContact(String contact) {
- this.contact = contact;
- }
- 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 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 getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|