1e6bdc4141772bf25a95e3276ad495629a8fbdf9.svn-base 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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. * BisInspCdepRgstrParam
  9. *
  10. * @author lhc
  11. * @date 2020-11-19
  12. */
  13. public class BisInspCdepRgstrParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 督查对象ID
  19. @ApiParam(name = "督查对象ID")
  20. @ApiModelProperty(value = "督查对象ID", name = "objId")
  21. private String objId;
  22. // 单位编码
  23. @ApiParam(name = "单位编码")
  24. @ApiModelProperty(value = "单位编码", name = "bDepCode")
  25. private String bDepCode;
  26. // 单位名称
  27. @ApiParam(name = "单位名称")
  28. @ApiModelProperty(value = "单位名称", name = "bChkUnit")
  29. private String bChkUnit;
  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 = "loc")
  41. private String loc;
  42. // 被检查单位联系人
  43. @ApiParam(name = "被检查单位联系人")
  44. @ApiModelProperty(value = "被检查单位联系人", name = "contact")
  45. private String contact;
  46. // 被检查单位联系人电话
  47. @ApiParam(name = "被检查单位联系人电话")
  48. @ApiModelProperty(value = "被检查单位联系人电话", name = "contactTel")
  49. private String contactTel;
  50. // 被检查单位负责人
  51. @ApiParam(name = "被检查单位负责人")
  52. @ApiModelProperty(value = "被检查单位负责人", name = "principal")
  53. private String principal;
  54. // 经度
  55. @ApiParam(name = "经度")
  56. @ApiModelProperty(value = "经度", name = "centerX")
  57. private Double centerX;
  58. // 纬度
  59. @ApiParam(name = "纬度")
  60. @ApiModelProperty(value = "纬度", name = "centerY")
  61. private Double centerY;
  62. // 高德经度
  63. @ApiParam(name = "高德经度")
  64. @ApiModelProperty(value = "高德经度", name = "gdX")
  65. private Double gdX;
  66. // 高德纬度
  67. @ApiParam(name = "高德纬度")
  68. @ApiModelProperty(value = "高德纬度", name = "gdY")
  69. private Double gdY;
  70. // 资质复核督查填报
  71. @ApiParam(name = "资质复核督查填报")
  72. @ApiModelProperty(value = "资质复核督查填报", name = "quaState")
  73. private String quaState;
  74. // 行为检测督查填报
  75. @ApiParam(name = "行为检测督查填报")
  76. @ApiModelProperty(value = "行为检测督查填报", name = "behState")
  77. private String behState;
  78. // 检测能力——岩土工程督查填报
  79. @ApiParam(name = "检测能力——岩土工程督查填报")
  80. @ApiModelProperty(value = "检测能力——岩土工程督查填报", name = "capState")
  81. private String capState;
  82. // 检测能力——混凝土工程督查填报
  83. @ApiParam(name = "检测能力——混凝土工程督查填报")
  84. @ApiModelProperty(value = "检测能力——混凝土工程督查填报", name = "conState")
  85. private String conState;
  86. // 督查状态
  87. @ApiParam(name = "督查状态")
  88. @ApiModelProperty(value = "督查状态", name = "state")
  89. private String state;
  90. // 创建人
  91. @ApiParam(name = "创建人")
  92. @ApiModelProperty(value = "创建人", name = "persId")
  93. private String persId;
  94. // 创建时间
  95. @ApiParam(name = "创建时间")
  96. @ApiModelProperty(value = "创建时间", name = "intm")
  97. private Date intm;
  98. // 修改时间
  99. @ApiParam(name = "修改时间")
  100. @ApiModelProperty(value = "修改时间", name = "uptm")
  101. private Date uptm;
  102. // 督查组ID
  103. @ApiParam(name = "督查组ID")
  104. @ApiModelProperty(value = "督查组ID", name = "groupId")
  105. private String groupId;
  106. // 数据状态(0:正常;9:删除)
  107. @ApiParam(name = "数据状态(0:正常;9:删除)")
  108. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  109. private String dataStat;
  110. public String getPlnaId() {
  111. return plnaId;
  112. }
  113. public void setPlnaId(String plnaId) {
  114. this.plnaId = plnaId;
  115. }
  116. @ApiParam(name = "时间条件-开始时间")
  117. @ApiModelProperty(value = "时间条件-开始时间", name = "sttm")
  118. private String sttm;
  119. @ApiParam(name = "时间条件-结束时间")
  120. @ApiModelProperty(value = "时间条件-结束时间", name = "entm")
  121. private String entm;
  122. public String getSttm() {
  123. return sttm;
  124. }
  125. public void setSttm(String sttm) {
  126. this.sttm = sttm;
  127. }
  128. public String getEntm() {
  129. return entm;
  130. }
  131. public void setEntm(String entm) {
  132. this.entm = entm;
  133. }
  134. //督查组id
  135. @ApiParam(name = "督查组ID")
  136. @ApiModelProperty(value = "督查计划ID", name = "plnaId")
  137. private String plnaId;
  138. public BisInspCdepRgstrParam() {
  139. }
  140. public String getId() {
  141. return id;
  142. }
  143. public void setId(String id) {
  144. this.id = id;
  145. }
  146. public String getObjId() {
  147. return objId;
  148. }
  149. public void setObjId(String objId) {
  150. this.objId = objId;
  151. }
  152. public String getBDepCode() {
  153. return bDepCode;
  154. }
  155. public void setBDepCode(String bDepCode) {
  156. this.bDepCode = bDepCode;
  157. }
  158. public String getBChkUnit() {
  159. return bChkUnit;
  160. }
  161. public void setBChkUnit(String bChkUnit) {
  162. this.bChkUnit = bChkUnit;
  163. }
  164. public String getAdCode() {
  165. return adCode;
  166. }
  167. public void setAdCode(String adCode) {
  168. this.adCode = adCode;
  169. }
  170. public String getAdName() {
  171. return adName;
  172. }
  173. public void setAdName(String adName) {
  174. this.adName = adName;
  175. }
  176. public String getLoc() {
  177. return loc;
  178. }
  179. public void setLoc(String loc) {
  180. this.loc = loc;
  181. }
  182. public String getContact() {
  183. return contact;
  184. }
  185. public void setContact(String contact) {
  186. this.contact = contact;
  187. }
  188. public String getContactTel() {
  189. return contactTel;
  190. }
  191. public void setContactTel(String contactTel) {
  192. this.contactTel = contactTel;
  193. }
  194. public String getPrincipal() {
  195. return principal;
  196. }
  197. public void setPrincipal(String principal) {
  198. this.principal = principal;
  199. }
  200. public Double getCenterX() {
  201. return centerX;
  202. }
  203. public void setCenterX(Double centerX) {
  204. this.centerX = centerX;
  205. }
  206. public Double getCenterY() {
  207. return centerY;
  208. }
  209. public void setCenterY(Double centerY) {
  210. this.centerY = centerY;
  211. }
  212. public Double getGdX() {
  213. return gdX;
  214. }
  215. public void setGdX(Double gdX) {
  216. this.gdX = gdX;
  217. }
  218. public Double getGdY() {
  219. return gdY;
  220. }
  221. public void setGdY(Double gdY) {
  222. this.gdY = gdY;
  223. }
  224. public String getQuaState() {
  225. return quaState;
  226. }
  227. public void setQuaState(String quaState) {
  228. this.quaState = quaState;
  229. }
  230. public String getBehState() {
  231. return behState;
  232. }
  233. public void setBehState(String behState) {
  234. this.behState = behState;
  235. }
  236. public String getCapState() {
  237. return capState;
  238. }
  239. public void setCapState(String capState) {
  240. this.capState = capState;
  241. }
  242. public String getConState() {
  243. return conState;
  244. }
  245. public void setConState(String conState) {
  246. this.conState = conState;
  247. }
  248. public String getState() {
  249. return state;
  250. }
  251. public void setState(String state) {
  252. this.state = state;
  253. }
  254. public String getPersId() {
  255. return persId;
  256. }
  257. public void setPersId(String persId) {
  258. this.persId = persId;
  259. }
  260. public Date getIntm() {
  261. return intm;
  262. }
  263. public void setIntm(Date intm) {
  264. this.intm = intm;
  265. }
  266. public Date getUptm() {
  267. return uptm;
  268. }
  269. public void setUptm(Date uptm) {
  270. this.uptm = uptm;
  271. }
  272. public String getGroupId() {
  273. return groupId;
  274. }
  275. public void setGroupId(String groupId) {
  276. this.groupId = groupId;
  277. }
  278. public String getDataStat() {
  279. return dataStat;
  280. }
  281. public void setDataStat(String dataStat) {
  282. this.dataStat = dataStat;
  283. }
  284. }