995a7843dbbbcd9e5017aaa4cc83c38c5b3bc31c.svn-base 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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. /**
  7. * entity:AttEngSd
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class AttEngSd extends BaseBean implements Serializable {
  14. private String guid;
  15. private String pGuid;
  16. private String engName;
  17. private String impoGrad;
  18. private Double apprBudg;
  19. private Date startDate;
  20. private Date compDate;
  21. private String engStat;
  22. private String orgGuid;
  23. private String oflpCode;
  24. private String ifReinForce;
  25. private String projGuid;
  26. private String stat;
  27. private String sdCode;
  28. private String engGuid;
  29. private Double cenLong;
  30. private Double cenLat;
  31. private String sdLoc;
  32. private String adGuid;
  33. private Double conArea;
  34. private Double totCap;
  35. private Double warpCap;
  36. private Double sdSizeLen;
  37. private Double sdSizeHig;
  38. private String engScal;
  39. private Long desFlSta;
  40. private String note;
  41. private Date collTime;
  42. private Date updTime;
  43. private String recPers;
  44. private String engReinForceGuid;
  45. public AttEngSd() {
  46. }
  47. public String getGuid() {
  48. return guid;
  49. }
  50. public void setGuid(String guid) {
  51. this.guid = guid;
  52. }
  53. public String getPGuid() {
  54. return pGuid;
  55. }
  56. public void setPGuid(String pGuid) {
  57. this.pGuid = pGuid;
  58. }
  59. public String getEngName() {
  60. return engName;
  61. }
  62. public void setEngName(String engName) {
  63. this.engName = engName;
  64. }
  65. public String getImpoGrad() {
  66. return impoGrad;
  67. }
  68. public void setImpoGrad(String impoGrad) {
  69. this.impoGrad = impoGrad;
  70. }
  71. public Double getApprBudg() {
  72. return apprBudg;
  73. }
  74. public void setApprBudg(Double apprBudg) {
  75. this.apprBudg = apprBudg;
  76. }
  77. public Date getStartDate() {
  78. return startDate;
  79. }
  80. public void setStartDate(Date startDate) {
  81. this.startDate = startDate;
  82. }
  83. public Date getCompDate() {
  84. return compDate;
  85. }
  86. public void setCompDate(Date compDate) {
  87. this.compDate = compDate;
  88. }
  89. public String getEngStat() {
  90. return engStat;
  91. }
  92. public void setEngStat(String engStat) {
  93. this.engStat = engStat;
  94. }
  95. public String getOrgGuid() {
  96. return orgGuid;
  97. }
  98. public void setOrgGuid(String orgGuid) {
  99. this.orgGuid = orgGuid;
  100. }
  101. public String getOflpCode() {
  102. return oflpCode;
  103. }
  104. public void setOflpCode(String oflpCode) {
  105. this.oflpCode = oflpCode;
  106. }
  107. public String getIfReinForce() {
  108. return ifReinForce;
  109. }
  110. public void setIfReinForce(String ifReinForce) {
  111. this.ifReinForce = ifReinForce;
  112. }
  113. public String getProjGuid() {
  114. return projGuid;
  115. }
  116. public void setProjGuid(String projGuid) {
  117. this.projGuid = projGuid;
  118. }
  119. public String getStat() {
  120. return stat;
  121. }
  122. public void setStat(String stat) {
  123. this.stat = stat;
  124. }
  125. public String getSdCode() {
  126. return sdCode;
  127. }
  128. public void setSdCode(String sdCode) {
  129. this.sdCode = sdCode;
  130. }
  131. public String getEngGuid() {
  132. return engGuid;
  133. }
  134. public void setEngGuid(String engGuid) {
  135. this.engGuid = engGuid;
  136. }
  137. public Double getCenLong() {
  138. return cenLong;
  139. }
  140. public void setCenLong(Double cenLong) {
  141. this.cenLong = cenLong;
  142. }
  143. public Double getCenLat() {
  144. return cenLat;
  145. }
  146. public void setCenLat(Double cenLat) {
  147. this.cenLat = cenLat;
  148. }
  149. public String getSdLoc() {
  150. return sdLoc;
  151. }
  152. public void setSdLoc(String sdLoc) {
  153. this.sdLoc = sdLoc;
  154. }
  155. public String getAdGuid() {
  156. return adGuid;
  157. }
  158. public void setAdGuid(String adGuid) {
  159. this.adGuid = adGuid;
  160. }
  161. public Double getConArea() {
  162. return conArea;
  163. }
  164. public void setConArea(Double conArea) {
  165. this.conArea = conArea;
  166. }
  167. public Double getTotCap() {
  168. return totCap;
  169. }
  170. public void setTotCap(Double totCap) {
  171. this.totCap = totCap;
  172. }
  173. public Double getWarpCap() {
  174. return warpCap;
  175. }
  176. public void setWarpCap(Double warpCap) {
  177. this.warpCap = warpCap;
  178. }
  179. public Double getSdSizeLen() {
  180. return sdSizeLen;
  181. }
  182. public void setSdSizeLen(Double sdSizeLen) {
  183. this.sdSizeLen = sdSizeLen;
  184. }
  185. public Double getSdSizeHig() {
  186. return sdSizeHig;
  187. }
  188. public void setSdSizeHig(Double sdSizeHig) {
  189. this.sdSizeHig = sdSizeHig;
  190. }
  191. public String getEngScal() {
  192. return engScal;
  193. }
  194. public void setEngScal(String engScal) {
  195. this.engScal = engScal;
  196. }
  197. public Long getDesFlSta() {
  198. return desFlSta;
  199. }
  200. public void setDesFlSta(Long desFlSta) {
  201. this.desFlSta = desFlSta;
  202. }
  203. public String getNote() {
  204. return note;
  205. }
  206. public void setNote(String note) {
  207. this.note = note;
  208. }
  209. public Date getCollTime() {
  210. return collTime;
  211. }
  212. public void setCollTime(Date collTime) {
  213. this.collTime = collTime;
  214. }
  215. public Date getUpdTime() {
  216. return updTime;
  217. }
  218. public void setUpdTime(Date updTime) {
  219. this.updTime = updTime;
  220. }
  221. public String getRecPers() {
  222. return recPers;
  223. }
  224. public void setRecPers(String recPers) {
  225. this.recPers = recPers;
  226. }
  227. public String getEngReinForceGuid() {
  228. return engReinForceGuid;
  229. }
  230. public void setEngReinForceGuid(String engReinForceGuid) {
  231. this.engReinForceGuid = engReinForceGuid;
  232. }
  233. @Override
  234. public String toString() {
  235. return "AttEngSd [" + "guid=" + guid + ", pGuid=" + pGuid + ", engName=" + engName + ", impoGrad=" + impoGrad + ", apprBudg=" + apprBudg + ", startDate=" + startDate + ", compDate=" + compDate + ", engStat=" + engStat + ", orgGuid=" + orgGuid + ", oflpCode=" + oflpCode + ", ifReinForce=" + ifReinForce + ", projGuid=" + projGuid + ", stat=" + stat + ", sdCode=" + sdCode + ", engGuid=" + engGuid + ", cenLong=" + cenLong + ", cenLat=" + cenLat + ", sdLoc=" + sdLoc + ", adGuid=" + adGuid + ", conArea=" + conArea + ", totCap=" + totCap + ", warpCap=" + warpCap + ", sdSizeLen=" + sdSizeLen + ", sdSizeHig=" + sdSizeHig + ", engScal=" + engScal + ", desFlSta=" + desFlSta + ", note=" + note + ", collTime=" + collTime + ", updTime=" + updTime + ", recPers=" + recPers + ", engReinForceGuid=" + engReinForceGuid + "]";
  236. }
  237. }