59614db34afac6b9d69d1582bc48f642d915cc95.svn-base 6.4 KB

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