dfa6b25be38419a8093a0a47b80d58ac29d2c4d6.svn-base 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspVill2021Pblm
  9. *
  10. * @author lhc
  11. * @date 2021-6-16
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspVill2021Pblm extends BaseBean implements Serializable {
  15. /** 主键ID */
  16. @ApiModelProperty(value="主键ID",name="id")
  17. private String id;
  18. /** 登记表ID */
  19. @ApiModelProperty(value="登记表ID",name="rgstrId")
  20. private String rgstrId;
  21. /** 问题名称 */
  22. @ApiModelProperty(value="问题名称",name="pblmNm")
  23. private String pblmNm;
  24. /** 问题描述 */
  25. @ApiModelProperty(value="问题描述",name="pblmDesc")
  26. private String pblmDesc;
  27. /** 问题所在地 */
  28. @ApiModelProperty(value="问题所在地",name="loc")
  29. private String loc;
  30. /** PC经度 */
  31. @ApiModelProperty(value="PC经度",name="centerX")
  32. private Double centerX;
  33. /** PC纬度 */
  34. @ApiModelProperty(value="PC纬度",name="centerY")
  35. private Double centerY;
  36. /** 高德经度 */
  37. @ApiModelProperty(value="高德经度",name="gdX")
  38. private Double gdX;
  39. /** 高德纬度 */
  40. @ApiModelProperty(value="高德纬度",name="gdY")
  41. private Double gdY;
  42. /** 问题是否属实或基本属实 */
  43. @ApiModelProperty(value="问题是否属实或基本属实",name="isTrue")
  44. private String isTrue;
  45. /** 问题是否违反现行农村饮水安全四项标准 */
  46. @ApiModelProperty(value="问题是否违反现行农村饮水安全四项标准",name="isBreachNorm")
  47. private String isBreachNorm;
  48. /** 当地是否现场调查 */
  49. @ApiModelProperty(value="当地是否现场调查",name="isLook")
  50. private String isLook;
  51. /** 当地是否采取整改改进措施 */
  52. @ApiModelProperty(value="当地是否采取整改改进措施",name="isMend")
  53. private String isMend;
  54. /** 是否向举报人或其家庭成员、邻居现场复核 */
  55. @ApiModelProperty(value="是否向举报人或其家庭成员、邻居现场复核",name="isChk")
  56. private String isChk;
  57. /** 现场复核是否正常供水 */
  58. @ApiModelProperty(value="现场复核是否正常供水",name="isChkSup")
  59. private String isChkSup;
  60. /** 举报人或周边群众是否满意 */
  61. @ApiModelProperty(value="举报人或周边群众是否满意",name="isStatis")
  62. private String isStatis;
  63. /** 是否完成整改 */
  64. @ApiModelProperty(value="是否完成整改",name="isComMend")
  65. private String isComMend;
  66. /** 备注 */
  67. @ApiModelProperty(value="备注",name="note")
  68. private String note;
  69. /** 记录人员ID */
  70. @ApiModelProperty(value="记录人员ID",name="persId")
  71. private String persId;
  72. /** 创建时间 */
  73. @ApiModelProperty(value="创建时间",name="intm")
  74. private Date intm;
  75. /** 最后修改时间 */
  76. @ApiModelProperty(value="最后修改时间",name="uptm")
  77. private Date uptm;
  78. /** 数据状态(0:正常;9:删除) */
  79. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  80. private String dataStat;
  81. public String getId() {
  82. return id;
  83. }
  84. public void setId(String id) {
  85. this.id = id;
  86. }
  87. public String getRgstrId() {
  88. return rgstrId;
  89. }
  90. public void setRgstrId(String rgstrId) {
  91. this.rgstrId = rgstrId;
  92. }
  93. public String getPblmNm() {
  94. return pblmNm;
  95. }
  96. public void setPblmNm(String pblmNm) {
  97. this.pblmNm = pblmNm;
  98. }
  99. public String getPblmDesc() {
  100. return pblmDesc;
  101. }
  102. public void setPblmDesc(String pblmDesc) {
  103. this.pblmDesc = pblmDesc;
  104. }
  105. public String getLoc() {
  106. return loc;
  107. }
  108. public void setLoc(String loc) {
  109. this.loc = loc;
  110. }
  111. public Double getCenterX() {
  112. return centerX;
  113. }
  114. public void setCenterX(Double centerX) {
  115. this.centerX = centerX;
  116. }
  117. public Double getCenterY() {
  118. return centerY;
  119. }
  120. public void setCenterY(Double centerY) {
  121. this.centerY = centerY;
  122. }
  123. public Double getGdX() {
  124. return gdX;
  125. }
  126. public void setGdX(Double gdX) {
  127. this.gdX = gdX;
  128. }
  129. public Double getGdY() {
  130. return gdY;
  131. }
  132. public void setGdY(Double gdY) {
  133. this.gdY = gdY;
  134. }
  135. public String getIsTrue() {
  136. return isTrue;
  137. }
  138. public void setIsTrue(String isTrue) {
  139. this.isTrue = isTrue;
  140. }
  141. public String getIsBreachNorm() {
  142. return isBreachNorm;
  143. }
  144. public void setIsBreachNorm(String isBreachNorm) {
  145. this.isBreachNorm = isBreachNorm;
  146. }
  147. public String getIsLook() {
  148. return isLook;
  149. }
  150. public void setIsLook(String isLook) {
  151. this.isLook = isLook;
  152. }
  153. public String getIsMend() {
  154. return isMend;
  155. }
  156. public void setIsMend(String isMend) {
  157. this.isMend = isMend;
  158. }
  159. public String getIsChk() {
  160. return isChk;
  161. }
  162. public void setIsChk(String isChk) {
  163. this.isChk = isChk;
  164. }
  165. public String getIsChkSup() {
  166. return isChkSup;
  167. }
  168. public void setIsChkSup(String isChkSup) {
  169. this.isChkSup = isChkSup;
  170. }
  171. public String getIsStatis() {
  172. return isStatis;
  173. }
  174. public void setIsStatis(String isStatis) {
  175. this.isStatis = isStatis;
  176. }
  177. public String getIsComMend() {
  178. return isComMend;
  179. }
  180. public void setIsComMend(String isComMend) {
  181. this.isComMend = isComMend;
  182. }
  183. public String getNote() {
  184. return note;
  185. }
  186. public void setNote(String note) {
  187. this.note = note;
  188. }
  189. public String getPersId() {
  190. return persId;
  191. }
  192. public void setPersId(String persId) {
  193. this.persId = persId;
  194. }
  195. public Date getIntm() {
  196. return intm;
  197. }
  198. public void setIntm(Date intm) {
  199. this.intm = intm;
  200. }
  201. public Date getUptm() {
  202. return uptm;
  203. }
  204. public void setUptm(Date uptm) {
  205. this.uptm = uptm;
  206. }
  207. public String getDataStat() {
  208. return dataStat;
  209. }
  210. public void setDataStat(String dataStat) {
  211. this.dataStat = dataStat;
  212. }
  213. @Override
  214. public String toString() {
  215. return "BisInspVill2021Pblm [" + "id=" + id + ", rgstrId=" + rgstrId + ", pblmNm=" + pblmNm + ", pblmDesc=" + pblmDesc + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", isTrue=" + isTrue + ", isBreachNorm=" + isBreachNorm + ", isLook=" + isLook + ", isMend=" + isMend + ", isChk=" + isChk + ", isChkSup=" + isChkSup + ", isStatis=" + isStatis + ", isComMend=" + isComMend + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  216. }
  217. }