da4375017ef3d6406fef4713d1e1141a739d3ac7.svn-base 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import cn.com.goldenwater.core.model.BaseBean;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. /**
  7. * entity:AttAdXBase
  8. *
  9. * @author zhengdafei
  10. * @date 2019-3-2
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class AttAdXBase extends BaseBean implements Serializable {
  14. // 是否贫困
  15. @ApiModelProperty("是否贫困")
  16. private String isPoveryt;
  17. // 数据来源
  18. @ApiModelProperty("数据来源")
  19. private String src;
  20. // 备注
  21. @ApiModelProperty("备注")
  22. private String remark;
  23. @ApiModelProperty("高德经度")
  24. private Double lgtd;
  25. @ApiModelProperty("高德纬度")
  26. private Double lttd;
  27. @ApiModelProperty("pc经度")
  28. private Double lgtdpc;
  29. @ApiModelProperty("pc纬度")
  30. private Double lttdpc;
  31. @ApiModelProperty("主键id")
  32. private String guid;
  33. @ApiModelProperty("行政编码code")
  34. private String adCode;
  35. @ApiModelProperty("行政区划名称")
  36. private String adName;
  37. private Double lowLeftLong;
  38. private Double lowLeftLat;
  39. private Double upRightLong;
  40. private Double upRightLat;
  41. @ApiModelProperty("上级行政区划名称")
  42. private String upAdName;
  43. @ApiModelProperty("行政区划级别")
  44. private String adGrad;
  45. private String adAbbrName;
  46. private String adStat;
  47. private Double adArea;
  48. @ApiModelProperty("行政区划全称")
  49. private String adFullName;
  50. private String note;
  51. private String effDate;
  52. private String exprDate;
  53. private Double adStatLong;
  54. private Double adStatLat;
  55. private String domainCode;
  56. private String adSign;
  57. private String modifierPeople;
  58. private String updDate;
  59. private String isReport;
  60. @ApiModelProperty("上级行政区划编码")
  61. private String adFcode;
  62. private String engId;
  63. public String getEngId() {
  64. return engId;
  65. }
  66. public void setEngId(String engId) {
  67. this.engId = engId;
  68. }
  69. public AttAdXBase() {
  70. }
  71. public String getIsPoveryt() {
  72. return isPoveryt;
  73. }
  74. public void setIsPoveryt(String isPoveryt) {
  75. this.isPoveryt = isPoveryt;
  76. }
  77. public String getSrc() {
  78. return src;
  79. }
  80. public void setSrc(String src) {
  81. this.src = src;
  82. }
  83. public String getRemark() {
  84. return remark;
  85. }
  86. public void setRemark(String remark) {
  87. this.remark = remark;
  88. }
  89. public Double getLgtd() {
  90. return lgtd;
  91. }
  92. public void setLgtd(Double lgtd) {
  93. this.lgtd = lgtd;
  94. }
  95. public Double getLttd() {
  96. return lttd;
  97. }
  98. public void setLttd(Double lttd) {
  99. this.lttd = lttd;
  100. }
  101. public Double getLgtdpc() {
  102. return lgtdpc;
  103. }
  104. public void setLgtdpc(Double lgtdpc) {
  105. this.lgtdpc = lgtdpc;
  106. }
  107. public Double getLttdpc() {
  108. return lttdpc;
  109. }
  110. public void setLttdpc(Double lttdpc) {
  111. this.lttdpc = lttdpc;
  112. }
  113. public String getGuid() {
  114. return guid;
  115. }
  116. public void setGuid(String guid) {
  117. this.guid = guid;
  118. }
  119. public String getAdCode() {
  120. return adCode;
  121. }
  122. public void setAdCode(String adCode) {
  123. this.adCode = adCode;
  124. }
  125. public String getAdName() {
  126. return adName;
  127. }
  128. public void setAdName(String adName) {
  129. this.adName = adName;
  130. }
  131. public Double getLowLeftLong() {
  132. return lowLeftLong;
  133. }
  134. public void setLowLeftLong(Double lowLeftLong) {
  135. this.lowLeftLong = lowLeftLong;
  136. }
  137. public Double getLowLeftLat() {
  138. return lowLeftLat;
  139. }
  140. public void setLowLeftLat(Double lowLeftLat) {
  141. this.lowLeftLat = lowLeftLat;
  142. }
  143. public Double getUpRightLong() {
  144. return upRightLong;
  145. }
  146. public void setUpRightLong(Double upRightLong) {
  147. this.upRightLong = upRightLong;
  148. }
  149. public Double getUpRightLat() {
  150. return upRightLat;
  151. }
  152. public void setUpRightLat(Double upRightLat) {
  153. this.upRightLat = upRightLat;
  154. }
  155. public String getUpAdName() {
  156. return upAdName;
  157. }
  158. public void setUpAdName(String upAdName) {
  159. this.upAdName = upAdName;
  160. }
  161. public String getAdGrad() {
  162. return adGrad;
  163. }
  164. public void setAdGrad(String adGrad) {
  165. this.adGrad = adGrad;
  166. }
  167. public String getAdAbbrName() {
  168. return adAbbrName;
  169. }
  170. public void setAdAbbrName(String adAbbrName) {
  171. this.adAbbrName = adAbbrName;
  172. }
  173. public String getAdStat() {
  174. return adStat;
  175. }
  176. public void setAdStat(String adStat) {
  177. this.adStat = adStat;
  178. }
  179. public Double getAdArea() {
  180. return adArea;
  181. }
  182. public void setAdArea(Double adArea) {
  183. this.adArea = adArea;
  184. }
  185. public String getAdFullName() {
  186. return adFullName;
  187. }
  188. public void setAdFullName(String adFullName) {
  189. this.adFullName = adFullName;
  190. }
  191. public String getNote() {
  192. return note;
  193. }
  194. public void setNote(String note) {
  195. this.note = note;
  196. }
  197. public String getEffDate() {
  198. return effDate;
  199. }
  200. public void setEffDate(String effDate) {
  201. this.effDate = effDate;
  202. }
  203. public String getExprDate() {
  204. return exprDate;
  205. }
  206. public void setExprDate(String exprDate) {
  207. this.exprDate = exprDate;
  208. }
  209. public Double getAdStatLong() {
  210. return adStatLong;
  211. }
  212. public void setAdStatLong(Double adStatLong) {
  213. this.adStatLong = adStatLong;
  214. }
  215. public Double getAdStatLat() {
  216. return adStatLat;
  217. }
  218. public void setAdStatLat(Double adStatLat) {
  219. this.adStatLat = adStatLat;
  220. }
  221. public String getDomainCode() {
  222. return domainCode;
  223. }
  224. public void setDomainCode(String domainCode) {
  225. this.domainCode = domainCode;
  226. }
  227. public String getAdSign() {
  228. return adSign;
  229. }
  230. public void setAdSign(String adSign) {
  231. this.adSign = adSign;
  232. }
  233. public String getModifierPeople() {
  234. return modifierPeople;
  235. }
  236. public void setModifierPeople(String modifierPeople) {
  237. this.modifierPeople = modifierPeople;
  238. }
  239. public String getUpdDate() {
  240. return updDate;
  241. }
  242. public void setUpdDate(String updDate) {
  243. this.updDate = updDate;
  244. }
  245. public String getIsReport() {
  246. return isReport;
  247. }
  248. public void setIsReport(String isReport) {
  249. this.isReport = isReport;
  250. }
  251. public String getAdFcode() {
  252. return adFcode;
  253. }
  254. public void setAdFcode(String adFcode) {
  255. this.adFcode = adFcode;
  256. }
  257. @Override
  258. public String toString() {
  259. return "AttAdXBase [" + "isPoveryt=" + isPoveryt + ", src=" + src + ", remark=" + remark + ", lgtd=" + lgtd + ", lttd=" + lttd + ", lgtdpc=" + lgtdpc + ", lttdpc=" + lttdpc + ", guid=" + guid + ", adCode=" + adCode + ", adName=" + adName + ", lowLeftLong=" + lowLeftLong + ", lowLeftLat=" + lowLeftLat + ", upRightLong=" + upRightLong + ", upRightLat=" + upRightLat + ", upAdName=" + upAdName + ", adGrad=" + adGrad + ", adAbbrName=" + adAbbrName + ", adStat=" + adStat + ", adArea=" + adArea + ", adFullName=" + adFullName + ", note=" + note + ", effDate=" + effDate + ", exprDate=" + exprDate + ", adStatLong=" + adStatLong + ", adStatLat=" + adStatLat + ", domainCode=" + domainCode + ", adSign=" + adSign + ", modifierPeople=" + modifierPeople + ", updDate=" + updDate + ", isReport=" + isReport + ", adFcode=" + adFcode + "]";
  260. }
  261. }