TBDeclaretable.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. package jeecg.workflow.entity.bus;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import javax.persistence.Column;
  5. import javax.persistence.Entity;
  6. import javax.persistence.PrimaryKeyJoinColumn;
  7. import javax.persistence.Table;
  8. import javax.persistence.Temporal;
  9. import javax.persistence.TemporalType;
  10. import org.jeecgframework.core.annotation.JeecgEntityTitle;
  11. import org.jeecgframework.workflow.pojo.base.TSBaseBus;
  12. /**
  13. * TDeclaretable entity. @author MyEclipse Persistence Tools
  14. */
  15. @Entity
  16. @Table(name = "t_b_declaretable")
  17. @PrimaryKeyJoinColumn(name = "id")
  18. public class TBDeclaretable extends TSBaseBus implements java.io.Serializable {
  19. private String declareno;
  20. private String constructionunit;
  21. private String projectname;
  22. private String projectlocation;
  23. private String administrativeregion;
  24. private Date declaredate;
  25. private Short declaretype;
  26. private String legalrepresentative;
  27. private String phone;
  28. private String agent;
  29. private String agentphone;
  30. private String address;
  31. private String post;
  32. private String projectnum;
  33. private String projectaddress;
  34. private Double totalconstructionarea;
  35. private Double floorarea;
  36. private Double undergroundarea;
  37. private BigDecimal householdnum;
  38. private BigDecimal peoplenum;
  39. private String note;
  40. private String scandata;
  41. @Column(name = "declareno", length = 100)
  42. public String getDeclareno() {
  43. return this.declareno;
  44. }
  45. public void setDeclareno(String declareno) {
  46. this.declareno = declareno;
  47. }
  48. @Column(name = "constructionunit", nullable = false, length = 100)
  49. public String getConstructionunit() {
  50. return this.constructionunit;
  51. }
  52. public void setConstructionunit(String constructionunit) {
  53. this.constructionunit = constructionunit;
  54. }
  55. @Column(name = "projectname", nullable = false, length = 100)
  56. public String getProjectname() {
  57. return this.projectname;
  58. }
  59. public void setProjectname(String projectname) {
  60. this.projectname = projectname;
  61. }
  62. @Column(name = "projectlocation", length = 100)
  63. public String getProjectlocation() {
  64. return this.projectlocation;
  65. }
  66. public void setProjectlocation(String projectlocation) {
  67. this.projectlocation = projectlocation;
  68. }
  69. @Column(name = "administrativeregion", length = 50)
  70. public String getAdministrativeregion() {
  71. return this.administrativeregion;
  72. }
  73. public void setAdministrativeregion(String administrativeregion) {
  74. this.administrativeregion = administrativeregion;
  75. }
  76. @Temporal(TemporalType.DATE)
  77. @Column(name = "declaredate", length = 13)
  78. public Date getDeclaredate() {
  79. return this.declaredate;
  80. }
  81. public void setDeclaredate(Date declaredate) {
  82. this.declaredate = declaredate;
  83. }
  84. @Column(name = "declaretype", nullable = false)
  85. public Short getDeclaretype() {
  86. return this.declaretype;
  87. }
  88. public void setDeclaretype(Short declaretype) {
  89. this.declaretype = declaretype;
  90. }
  91. @Column(name = "legalrepresentative", nullable = false, length = 10)
  92. public String getLegalrepresentative() {
  93. return this.legalrepresentative;
  94. }
  95. public void setLegalrepresentative(String legalrepresentative) {
  96. this.legalrepresentative = legalrepresentative;
  97. }
  98. @Column(name = "phone", nullable = false, length = 30)
  99. public String getPhone() {
  100. return this.phone;
  101. }
  102. public void setPhone(String phone) {
  103. this.phone = phone;
  104. }
  105. @Column(name = "agent", length = 10)
  106. public String getAgent() {
  107. return this.agent;
  108. }
  109. public void setAgent(String agent) {
  110. this.agent = agent;
  111. }
  112. @Column(name = "agentphone", length = 30)
  113. public String getAgentphone() {
  114. return this.agentphone;
  115. }
  116. public void setAgentphone(String agentphone) {
  117. this.agentphone = agentphone;
  118. }
  119. @Column(name = "address", length = 300)
  120. public String getAddress() {
  121. return this.address;
  122. }
  123. public void setAddress(String address) {
  124. this.address = address;
  125. }
  126. @Column(name = "post", length = 10)
  127. public String getPost() {
  128. return this.post;
  129. }
  130. public void setPost(String post) {
  131. this.post = post;
  132. }
  133. @Column(name = "projectnum", length = 50)
  134. public String getProjectnum() {
  135. return this.projectnum;
  136. }
  137. public void setProjectnum(String projectnum) {
  138. this.projectnum = projectnum;
  139. }
  140. @Column(name = "projectaddress", length = 200)
  141. public String getProjectaddress() {
  142. return this.projectaddress;
  143. }
  144. public void setProjectaddress(String projectaddress) {
  145. this.projectaddress = projectaddress;
  146. }
  147. @Column(name = "totalconstructionarea", precision = 12)
  148. public Double getTotalconstructionarea() {
  149. return this.totalconstructionarea;
  150. }
  151. public void setTotalconstructionarea(Double totalconstructionarea) {
  152. this.totalconstructionarea = totalconstructionarea;
  153. }
  154. @Column(name = "floorarea", precision = 12)
  155. public Double getFloorarea() {
  156. return this.floorarea;
  157. }
  158. public void setFloorarea(Double floorarea) {
  159. this.floorarea = floorarea;
  160. }
  161. @Column(name = "undergroundarea", precision = 12)
  162. public Double getUndergroundarea() {
  163. return this.undergroundarea;
  164. }
  165. public void setUndergroundarea(Double undergroundarea) {
  166. this.undergroundarea = undergroundarea;
  167. }
  168. @Column(name = "householdnum", precision = 131089, scale = 0)
  169. public BigDecimal getHouseholdnum() {
  170. return this.householdnum;
  171. }
  172. public void setHouseholdnum(BigDecimal householdnum) {
  173. this.householdnum = householdnum;
  174. }
  175. @Column(name = "peoplenum", precision = 131089, scale = 0)
  176. public BigDecimal getPeoplenum() {
  177. return this.peoplenum;
  178. }
  179. public void setPeoplenum(BigDecimal peoplenum) {
  180. this.peoplenum = peoplenum;
  181. }
  182. @Column(name = "note", length = 300)
  183. public String getNote() {
  184. return this.note;
  185. }
  186. public void setNote(String note) {
  187. this.note = note;
  188. }
  189. @Column(name = "scandata", length = 1)
  190. public String getScandata() {
  191. return this.scandata;
  192. }
  193. public void setScandata(String scandata) {
  194. this.scandata = scandata;
  195. }
  196. }