385de01e41ca9a6b342fcbbe8f769f1c27dbad97.svn-base 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:AttFundBase
  9. *
  10. * @author lisen
  11. * @date 2021-6-19
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttFundBase extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value="主键ID",name="id")
  17. private String id;
  18. // bis_insp_all_obj表OBJ_ID
  19. @ApiModelProperty(value="bis_insp_all_obj表OBJ_ID",name="projCode")
  20. private String projCode;
  21. // 项目名称
  22. @ApiModelProperty(value="项目名称",name="projName")
  23. private String projName;
  24. // 行政区划编码
  25. @ApiModelProperty(value="行政区划编码",name="adCode")
  26. private String adCode;
  27. // 行政区划名称
  28. @ApiModelProperty(value="行政区划名称",name="adName")
  29. private String adName;
  30. // 建设单位
  31. @ApiModelProperty(value="建设单位",name="constractUnit")
  32. private String constractUnit;
  33. // 项目类型
  34. @ApiModelProperty(value="项目类型",name="projType")
  35. private String projType;
  36. // 预算年份
  37. @ApiModelProperty(value="预算年份",name="planYear")
  38. private String planYear;
  39. // 计划安排资金(万元)
  40. @ApiModelProperty(value="计划安排资金(万元)",name="planFunds")
  41. private Double planFunds;
  42. // 备注
  43. @ApiModelProperty(value="备注",name="remarks")
  44. private String remarks;
  45. // 经度
  46. @ApiModelProperty(value="经度",name="centerX")
  47. private Double centerX;
  48. // 纬度
  49. @ApiModelProperty(value="纬度",name="centerY")
  50. private Double centerY;
  51. // 高德经度
  52. @ApiModelProperty(value="高德经度",name="gdX")
  53. private Double gdX;
  54. // 高德纬度
  55. @ApiModelProperty(value="高德纬度",name="gdY")
  56. private Double gdY;
  57. // 创建人
  58. @ApiModelProperty(value="创建人",name="persId")
  59. private String persId;
  60. // 创建时间
  61. @ApiModelProperty(value="创建时间",name="intm")
  62. private Date intm;
  63. // 修改时间
  64. @ApiModelProperty(value="修改时间",name="uptm")
  65. private Date uptm;
  66. // 数据状态(0:正常;9:删除)
  67. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  68. private String dataStat;
  69. public AttFundBase() {
  70. }
  71. public String getId() {
  72. return id;
  73. }
  74. public void setId(String id) {
  75. this.id = id;
  76. }
  77. public String getProjCode() {
  78. return projCode;
  79. }
  80. public void setProjCode(String projCode) {
  81. this.projCode = projCode;
  82. }
  83. public String getProjName() {
  84. return projName;
  85. }
  86. public void setProjName(String projName) {
  87. this.projName = projName;
  88. }
  89. public String getAdCode() {
  90. return adCode;
  91. }
  92. public void setAdCode(String adCode) {
  93. this.adCode = adCode;
  94. }
  95. public String getAdName() {
  96. return adName;
  97. }
  98. public void setAdName(String adName) {
  99. this.adName = adName;
  100. }
  101. public String getConstractUnit() {
  102. return constractUnit;
  103. }
  104. public void setConstractUnit(String constractUnit) {
  105. this.constractUnit = constractUnit;
  106. }
  107. public String getProjType() {
  108. return projType;
  109. }
  110. public void setProjType(String projType) {
  111. this.projType = projType;
  112. }
  113. public String getPlanYear() {
  114. return planYear;
  115. }
  116. public void setPlanYear(String planYear) {
  117. this.planYear = planYear;
  118. }
  119. public Double getPlanFunds() {
  120. return planFunds;
  121. }
  122. public void setPlanFunds(Double planFunds) {
  123. this.planFunds = planFunds;
  124. }
  125. public String getRemarks() {
  126. return remarks;
  127. }
  128. public void setRemarks(String remarks) {
  129. this.remarks = remarks;
  130. }
  131. public Double getCenterX() {
  132. return centerX;
  133. }
  134. public void setCenterX(Double centerX) {
  135. this.centerX = centerX;
  136. }
  137. public Double getCenterY() {
  138. return centerY;
  139. }
  140. public void setCenterY(Double centerY) {
  141. this.centerY = centerY;
  142. }
  143. public Double getGdX() {
  144. return gdX;
  145. }
  146. public void setGdX(Double gdX) {
  147. this.gdX = gdX;
  148. }
  149. public Double getGdY() {
  150. return gdY;
  151. }
  152. public void setGdY(Double gdY) {
  153. this.gdY = gdY;
  154. }
  155. public String getPersId() {
  156. return persId;
  157. }
  158. public void setPersId(String persId) {
  159. this.persId = persId;
  160. }
  161. public Date getIntm() {
  162. return intm;
  163. }
  164. public void setIntm(Date intm) {
  165. this.intm = intm;
  166. }
  167. public Date getUptm() {
  168. return uptm;
  169. }
  170. public void setUptm(Date uptm) {
  171. this.uptm = uptm;
  172. }
  173. public String getDataStat() {
  174. return dataStat;
  175. }
  176. public void setDataStat(String dataStat) {
  177. this.dataStat = dataStat;
  178. }
  179. @Override
  180. public String toString() {
  181. return "AttFundBase [" + "id=" + id + ", projCode=" + projCode + ", projName=" + projName + ", adCode=" + adCode + ", adName=" + adName + ", constractUnit=" + constractUnit + ", projType=" + projType + ", planYear=" + planYear + ", planFunds=" + planFunds + ", remarks=" + remarks + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  182. }
  183. }