1e26b64c6e251c292bf6c53981eb5b85f143d62c.svn-base 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. * AttJskejianEcofrdBaseParam
  9. *
  10. * @author lune
  11. * @date 2019-12-18
  12. */
  13. public class AttJskejianEcofrdBaseParam extends PageParam implements Serializable {
  14. @ApiModelProperty("PC纬度")
  15. private Double centerY;
  16. @ApiModelProperty("高德经度")
  17. private Double gdX;
  18. @ApiModelProperty("高德纬度")
  19. private Double gdY;
  20. @ApiModelProperty("举报内容")
  21. private String reportContent;
  22. @ApiModelProperty("涉及业务")
  23. private String biz;
  24. @ApiModelProperty("主办单位")
  25. private String hostUnit;
  26. @ApiModelProperty("协办单位")
  27. private String sptUnit;
  28. @ApiModelProperty("调查核实情况")
  29. private String invstVfctn;
  30. @ApiModelProperty("处理和整改情况")
  31. private String trtmtRctftn;
  32. @ApiModelProperty("研判意见")
  33. private String opinion;
  34. @ApiModelProperty("初拟跟踪处室")
  35. private String office;
  36. @ApiModelProperty("是否办结(1:是;2:否)")
  37. private String isOver;
  38. @ApiModelProperty("创建人")
  39. private String persId;
  40. @ApiModelProperty("创建时间")
  41. private Date intm;
  42. @ApiModelProperty("修改时间")
  43. private Date uptm;
  44. @ApiModelProperty("主键ID")
  45. private String id;
  46. @ApiModelProperty("受理编号")
  47. private String accepNum;
  48. @ApiModelProperty("交办编号")
  49. private String assignNum;
  50. @ApiModelProperty("行政区编码")
  51. private String adCode;
  52. @ApiModelProperty("行政区名称")
  53. private String adName;
  54. @ApiModelProperty("所在详细位置")
  55. private String location;
  56. @ApiModelProperty("PC经度")
  57. private Double centerX;
  58. public AttJskejianEcofrdBaseParam() {
  59. }
  60. public Double getCenterY() {
  61. return centerY;
  62. }
  63. public void setCenterY(Double centerY) {
  64. this.centerY = centerY;
  65. }
  66. public Double getGdX() {
  67. return gdX;
  68. }
  69. public void setGdX(Double gdX) {
  70. this.gdX = gdX;
  71. }
  72. public Double getGdY() {
  73. return gdY;
  74. }
  75. public void setGdY(Double gdY) {
  76. this.gdY = gdY;
  77. }
  78. public String getReportContent() {
  79. return reportContent;
  80. }
  81. public void setReportContent(String reportContent) {
  82. this.reportContent = reportContent;
  83. }
  84. public String getBiz() {
  85. return biz;
  86. }
  87. public void setBiz(String biz) {
  88. this.biz = biz;
  89. }
  90. public String getHostUnit() {
  91. return hostUnit;
  92. }
  93. public void setHostUnit(String hostUnit) {
  94. this.hostUnit = hostUnit;
  95. }
  96. public String getSptUnit() {
  97. return sptUnit;
  98. }
  99. public void setSptUnit(String sptUnit) {
  100. this.sptUnit = sptUnit;
  101. }
  102. public String getInvstVfctn() {
  103. return invstVfctn;
  104. }
  105. public void setInvstVfctn(String invstVfctn) {
  106. this.invstVfctn = invstVfctn;
  107. }
  108. public String getTrtmtRctftn() {
  109. return trtmtRctftn;
  110. }
  111. public void setTrtmtRctftn(String trtmtRctftn) {
  112. this.trtmtRctftn = trtmtRctftn;
  113. }
  114. public String getOpinion() {
  115. return opinion;
  116. }
  117. public void setOpinion(String opinion) {
  118. this.opinion = opinion;
  119. }
  120. public String getOffice() {
  121. return office;
  122. }
  123. public void setOffice(String office) {
  124. this.office = office;
  125. }
  126. public String getIsOver() {
  127. return isOver;
  128. }
  129. public void setIsOver(String isOver) {
  130. this.isOver = isOver;
  131. }
  132. public String getPersId() {
  133. return persId;
  134. }
  135. public void setPersId(String persId) {
  136. this.persId = persId;
  137. }
  138. public Date getIntm() {
  139. return intm;
  140. }
  141. public void setIntm(Date intm) {
  142. this.intm = intm;
  143. }
  144. public Date getUptm() {
  145. return uptm;
  146. }
  147. public void setUptm(Date uptm) {
  148. this.uptm = uptm;
  149. }
  150. public String getId() {
  151. return id;
  152. }
  153. public void setId(String id) {
  154. this.id = id;
  155. }
  156. public String getAccepNum() {
  157. return accepNum;
  158. }
  159. public void setAccepNum(String accepNum) {
  160. this.accepNum = accepNum;
  161. }
  162. public String getAssignNum() {
  163. return assignNum;
  164. }
  165. public void setAssignNum(String assignNum) {
  166. this.assignNum = assignNum;
  167. }
  168. public String getAdCode() {
  169. return adCode;
  170. }
  171. public void setAdCode(String adCode) {
  172. this.adCode = adCode;
  173. }
  174. public String getAdName() {
  175. return adName;
  176. }
  177. public void setAdName(String adName) {
  178. this.adName = adName;
  179. }
  180. public String getLocation() {
  181. return location;
  182. }
  183. public void setLocation(String location) {
  184. this.location = location;
  185. }
  186. public Double getCenterX() {
  187. return centerX;
  188. }
  189. public void setCenterX(Double centerX) {
  190. this.centerX = centerX;
  191. }
  192. }