5ae1606c02a420ef6222069966dbb3057270fa10.svn-base 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttCdepBaseParam
  9. *
  10. * @author lhc
  11. * @date 2020-11-19
  12. */
  13. public class AttCdepBaseParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 单位编码
  19. @ApiParam(name = "单位编码")
  20. @ApiModelProperty(value = "单位编码", name = "depCode")
  21. private String depCode;
  22. // 单位名称
  23. @ApiParam(name = "单位名称")
  24. @ApiModelProperty(value = "单位名称", name = "depName")
  25. private String depName;
  26. // 详细地址
  27. @ApiParam(name = "详细地址")
  28. @ApiModelProperty(value = "详细地址", name = "loc")
  29. private String loc;
  30. // 行政区划编码
  31. @ApiParam(name = "行政区划编码")
  32. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  33. private String adCode;
  34. // 行政区划名称
  35. @ApiParam(name = "行政区划名称")
  36. @ApiModelProperty(value = "行政区划名称", name = "adName")
  37. private String adName;
  38. // 单位负责人
  39. @ApiParam(name = "单位负责人")
  40. @ApiModelProperty(value = "单位负责人", name = "principal")
  41. private String principal;
  42. // 单位联系人电话
  43. @ApiParam(name = "单位联系人电话")
  44. @ApiModelProperty(value = "单位联系人电话", name = "contactTel")
  45. private String contactTel;
  46. // 单位联系人
  47. @ApiParam(name = "单位联系人")
  48. @ApiModelProperty(value = "单位联系人", name = "contact")
  49. private String contact;
  50. // 经度
  51. @ApiParam(name = "经度")
  52. @ApiModelProperty(value = "经度", name = "centerX")
  53. private Double centerX;
  54. // 纬度
  55. @ApiParam(name = "纬度")
  56. @ApiModelProperty(value = "纬度", name = "centerY")
  57. private Double centerY;
  58. // 高德经度
  59. @ApiParam(name = "高德经度")
  60. @ApiModelProperty(value = "高德经度", name = "gdX")
  61. private Double gdX;
  62. // 高德纬度
  63. @ApiParam(name = "高德纬度")
  64. @ApiModelProperty(value = "高德纬度", name = "gdY")
  65. private Double gdY;
  66. // 创建人
  67. @ApiParam(name = "创建人")
  68. @ApiModelProperty(value = "创建人", name = "persId")
  69. private String persId;
  70. // 创建时间
  71. @ApiParam(name = "创建时间")
  72. @ApiModelProperty(value = "创建时间", name = "intm")
  73. private Date intm;
  74. // 修改时间
  75. @ApiParam(name = "修改时间")
  76. @ApiModelProperty(value = "修改时间", name = "uptm")
  77. private Date uptm;
  78. // 数据状态(0:正常;9:删除)
  79. @ApiParam(name = "数据状态(0:正常;9:删除)")
  80. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  81. private String dataStat;
  82. public AttCdepBaseParam() {
  83. }
  84. public String getId() {
  85. return id;
  86. }
  87. public void setId(String id) {
  88. this.id = id;
  89. }
  90. public String getDepCode() {
  91. return depCode;
  92. }
  93. public void setDepCode(String depCode) {
  94. this.depCode = depCode;
  95. }
  96. public String getDepName() {
  97. return depName;
  98. }
  99. public void setDepName(String depName) {
  100. this.depName = depName;
  101. }
  102. public String getLoc() {
  103. return loc;
  104. }
  105. public void setLoc(String loc) {
  106. this.loc = loc;
  107. }
  108. public String getAdCode() {
  109. return adCode;
  110. }
  111. public void setAdCode(String adCode) {
  112. this.adCode = adCode;
  113. }
  114. public String getAdName() {
  115. return adName;
  116. }
  117. public void setAdName(String adName) {
  118. this.adName = adName;
  119. }
  120. public String getPrincipal() {
  121. return principal;
  122. }
  123. public void setPrincipal(String principal) {
  124. this.principal = principal;
  125. }
  126. public String getContactTel() {
  127. return contactTel;
  128. }
  129. public void setContactTel(String contactTel) {
  130. this.contactTel = contactTel;
  131. }
  132. public String getContact() {
  133. return contact;
  134. }
  135. public void setContact(String contact) {
  136. this.contact = contact;
  137. }
  138. public Double getCenterX() {
  139. return centerX;
  140. }
  141. public void setCenterX(Double centerX) {
  142. this.centerX = centerX;
  143. }
  144. public Double getCenterY() {
  145. return centerY;
  146. }
  147. public void setCenterY(Double centerY) {
  148. this.centerY = centerY;
  149. }
  150. public Double getGdX() {
  151. return gdX;
  152. }
  153. public void setGdX(Double gdX) {
  154. this.gdX = gdX;
  155. }
  156. public Double getGdY() {
  157. return gdY;
  158. }
  159. public void setGdY(Double gdY) {
  160. this.gdY = gdY;
  161. }
  162. public String getPersId() {
  163. return persId;
  164. }
  165. public void setPersId(String persId) {
  166. this.persId = persId;
  167. }
  168. public Date getIntm() {
  169. return intm;
  170. }
  171. public void setIntm(Date intm) {
  172. this.intm = intm;
  173. }
  174. public Date getUptm() {
  175. return uptm;
  176. }
  177. public void setUptm(Date uptm) {
  178. this.uptm = uptm;
  179. }
  180. public String getDataStat() {
  181. return dataStat;
  182. }
  183. public void setDataStat(String dataStat) {
  184. this.dataStat = dataStat;
  185. }
  186. }