TblFamily.java 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. package com.yihu.wlyy.entity;
  2. import java.sql.Timestamp;
  3. import javax.persistence.*;
  4. import org.hibernate.annotations.GenericGenerator;
  5. /**
  6. * TblFamily entity. @author MyEclipse Persistence Tools
  7. */
  8. @Entity
  9. @Table(name = "tbl_family")
  10. public class TblFamily implements java.io.Serializable {
  11. // Fields
  12. private Integer id;//记录编码
  13. private String village;//居委会编码
  14. private String team;//组编码
  15. private String familyno;//家庭编号
  16. private String doornumb;//分户编号
  17. private String familyadd;//家庭地址
  18. private String doorno;//门牌号
  19. private String zipcode;//家庭邮编
  20. private String doorman;//房东姓名
  21. private String doormantel;//房东联系电话
  22. private Integer operatorid;//录入操作员
  23. private String checkunit;//登记单位
  24. private Timestamp checkdate;//登记日期
  25. private Timestamp intime;//入库时间
  26. private String cancelcau;//注销原因
  27. private Timestamp canceldate;//注销日期
  28. private String memo;//备注
  29. private Timestamp lastmodifydate;//末次修改时间
  30. private String ftype;//住房类型
  31. private Timestamp updatedate;//
  32. private Integer upoperater;//
  33. private String doorcardid;//房东身份证
  34. private Integer doorpersonid;//房东关联id
  35. private String persontype;//人口类型
  36. private String mzdzm;//
  37. // Constructors
  38. /** default constructor */
  39. public TblFamily() {
  40. }
  41. /** full constructor */
  42. public TblFamily(String village, String team, String familyno,
  43. String doornumb, String familyadd, String doorno, String zipcode,
  44. String doorman, String doormantel, Integer operatorid,
  45. String checkunit, Timestamp checkdate, Timestamp intime,
  46. String cancelcau, Timestamp canceldate, String memo,
  47. Timestamp lastmodifydate, String ftype, Timestamp updatedate,
  48. Integer upoperater, String doorcardid, Integer doorpersonid,
  49. String persontype, String mzdzm) {
  50. this.village = village;
  51. this.team = team;
  52. this.familyno = familyno;
  53. this.doornumb = doornumb;
  54. this.familyadd = familyadd;
  55. this.doorno = doorno;
  56. this.zipcode = zipcode;
  57. this.doorman = doorman;
  58. this.doormantel = doormantel;
  59. this.operatorid = operatorid;
  60. this.checkunit = checkunit;
  61. this.checkdate = checkdate;
  62. this.intime = intime;
  63. this.cancelcau = cancelcau;
  64. this.canceldate = canceldate;
  65. this.memo = memo;
  66. this.lastmodifydate = lastmodifydate;
  67. this.ftype = ftype;
  68. this.updatedate = updatedate;
  69. this.upoperater = upoperater;
  70. this.doorcardid = doorcardid;
  71. this.doorpersonid = doorpersonid;
  72. this.persontype = persontype;
  73. this.mzdzm = mzdzm;
  74. }
  75. // Property accessors
  76. @Id
  77. @GeneratedValue(strategy = GenerationType.IDENTITY)
  78. @Column(name = "ID", unique = true, nullable = false)
  79. public Integer getId() {
  80. return this.id;
  81. }
  82. public void setId(Integer id) {
  83. this.id = id;
  84. }
  85. @Column(name = "VILLAGE", length = 12)
  86. public String getVillage() {
  87. return this.village;
  88. }
  89. public void setVillage(String village) {
  90. this.village = village;
  91. }
  92. @Column(name = "TEAM", length = 4)
  93. public String getTeam() {
  94. return this.team;
  95. }
  96. public void setTeam(String team) {
  97. this.team = team;
  98. }
  99. @Column(name = "FAMILYNO", length = 6)
  100. public String getFamilyno() {
  101. return this.familyno;
  102. }
  103. public void setFamilyno(String familyno) {
  104. this.familyno = familyno;
  105. }
  106. @Column(name = "DOORNUMB", length = 4)
  107. public String getDoornumb() {
  108. return this.doornumb;
  109. }
  110. public void setDoornumb(String doornumb) {
  111. this.doornumb = doornumb;
  112. }
  113. @Column(name = "FAMILYADD", length = 80)
  114. public String getFamilyadd() {
  115. return this.familyadd;
  116. }
  117. public void setFamilyadd(String familyadd) {
  118. this.familyadd = familyadd;
  119. }
  120. @Column(name = "DOORNO", length = 20)
  121. public String getDoorno() {
  122. return this.doorno;
  123. }
  124. public void setDoorno(String doorno) {
  125. this.doorno = doorno;
  126. }
  127. @Column(name = "ZIPCODE", length = 6)
  128. public String getZipcode() {
  129. return this.zipcode;
  130. }
  131. public void setZipcode(String zipcode) {
  132. this.zipcode = zipcode;
  133. }
  134. @Column(name = "DOORMAN", length = 50)
  135. public String getDoorman() {
  136. return this.doorman;
  137. }
  138. public void setDoorman(String doorman) {
  139. this.doorman = doorman;
  140. }
  141. @Column(name = "DOORMANTEL", length = 60)
  142. public String getDoormantel() {
  143. return this.doormantel;
  144. }
  145. public void setDoormantel(String doormantel) {
  146. this.doormantel = doormantel;
  147. }
  148. @Column(name = "OPERATORID")
  149. public Integer getOperatorid() {
  150. return this.operatorid;
  151. }
  152. public void setOperatorid(Integer operatorid) {
  153. this.operatorid = operatorid;
  154. }
  155. @Column(name = "CHECKUNIT", length = 12)
  156. public String getCheckunit() {
  157. return this.checkunit;
  158. }
  159. public void setCheckunit(String checkunit) {
  160. this.checkunit = checkunit;
  161. }
  162. @Column(name = "CHECKDATE", length = 0)
  163. public Timestamp getCheckdate() {
  164. return this.checkdate;
  165. }
  166. public void setCheckdate(Timestamp checkdate) {
  167. this.checkdate = checkdate;
  168. }
  169. @Column(name = "INTIME", length = 0)
  170. public Timestamp getIntime() {
  171. return this.intime;
  172. }
  173. public void setIntime(Timestamp intime) {
  174. this.intime = intime;
  175. }
  176. @Column(name = "CANCELCAU", length = 1)
  177. public String getCancelcau() {
  178. return this.cancelcau;
  179. }
  180. public void setCancelcau(String cancelcau) {
  181. this.cancelcau = cancelcau;
  182. }
  183. @Column(name = "CANCELDATE", length = 0)
  184. public Timestamp getCanceldate() {
  185. return this.canceldate;
  186. }
  187. public void setCanceldate(Timestamp canceldate) {
  188. this.canceldate = canceldate;
  189. }
  190. @Column(name = "MEMO", length = 210)
  191. public String getMemo() {
  192. return this.memo;
  193. }
  194. public void setMemo(String memo) {
  195. this.memo = memo;
  196. }
  197. @Column(name = "LASTMODIFYDATE", length = 0)
  198. public Timestamp getLastmodifydate() {
  199. return this.lastmodifydate;
  200. }
  201. public void setLastmodifydate(Timestamp lastmodifydate) {
  202. this.lastmodifydate = lastmodifydate;
  203. }
  204. @Column(name = "FTYPE", length = 1)
  205. public String getFtype() {
  206. return this.ftype;
  207. }
  208. public void setFtype(String ftype) {
  209. this.ftype = ftype;
  210. }
  211. @Column(name = "UPDATEDATE", length = 0)
  212. public Timestamp getUpdatedate() {
  213. return this.updatedate;
  214. }
  215. public void setUpdatedate(Timestamp updatedate) {
  216. this.updatedate = updatedate;
  217. }
  218. @Column(name = "UPOPERATER")
  219. public Integer getUpoperater() {
  220. return this.upoperater;
  221. }
  222. public void setUpoperater(Integer upoperater) {
  223. this.upoperater = upoperater;
  224. }
  225. @Column(name = "DOORCARDID", length = 18)
  226. public String getDoorcardid() {
  227. return this.doorcardid;
  228. }
  229. public void setDoorcardid(String doorcardid) {
  230. this.doorcardid = doorcardid;
  231. }
  232. @Column(name = "DOORPERSONID")
  233. public Integer getDoorpersonid() {
  234. return this.doorpersonid;
  235. }
  236. public void setDoorpersonid(Integer doorpersonid) {
  237. this.doorpersonid = doorpersonid;
  238. }
  239. @Column(name = "PERSONTYPE", length = 1)
  240. public String getPersontype() {
  241. return this.persontype;
  242. }
  243. public void setPersontype(String persontype) {
  244. this.persontype = persontype;
  245. }
  246. @Column(name = "MZDZM", length = 12)
  247. public String getMzdzm() {
  248. return this.mzdzm;
  249. }
  250. public void setMzdzm(String mzdzm) {
  251. this.mzdzm = mzdzm;
  252. }
  253. }