123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914 |
- package com.yihu.wlyy.entity.demographic;
- import java.sql.Timestamp;
- import javax.persistence.*;
- import org.hibernate.annotations.GenericGenerator;
- /**
- * 人口学信息。所有数据均从基卫数据库导出,数据库的表名与基卫一致。
- */
- @Entity
- @Table(name = "tbl_basic")
- public class DemographicInfo implements java.io.Serializable {
- private Integer personid;//人员编码
- private String persontype;//人员类型c2n(Persontype)
- private String name;//姓名
- private String oldname;//曾用名
- private String aliasname;//别名
- private String sex;//性别c2n(sex)
- private Timestamp birth;//出生年月
- private Timestamp doorbirth;//公安户籍出生年月
- private String cardid;//身份证号码 18
- private String nation;//民族c2n(Nation)
- private String edudegree;//文化程度c2n(Edudegree)
- private String work;//职业c2n(Work)
- private String party;//政治面貌c2n(Party)
- private String doorprop;//户口性质c2n(Whouse)
- private String farmer;//是否农户c2n(Whether)
- private String aviso;//是否重点通报对象
- private String publicize;//是否宣传访视重点
- private String hortation;//是否应奖励对象
- private String checktype;//是否三查对象
- private String single;//是否独生子女
- private Integer workid;//工作单位编码
- private String dooraddress;//户籍地编码
- private String dooraddressinfo;//户籍地详细地址
- private String nowaddress;//现居住地编码
- private String nowaddressinfo;//现居住地详细地址
- private String doortel;//户籍地电话
- private String marrytype;//当前婚姻状况c2n(Marriage)
- private Timestamp marrychangedate;//婚姻变动日期
- private Integer mateid;//'配偶ID
- private String matename;//配偶姓名
- private String matecardid;//配偶身份证号码
- private Timestamp matebrith;//配偶出生年月
- private Integer fatherid;//父亲ID
- private String fathername;//父亲姓名
- private Integer materid;//母亲ID
- private String matername;//母亲姓名
- private Integer girlcount;//现有女孩数
- private Integer boycount;//现有男孩数
- private Integer operatorid;//登记操作员
- private String checkunit;//登记单位
- private Timestamp checkdate;//登记日期
- private Integer uoperatorid;//'修改操作员
- private String updateunit;//修改单位
- private Timestamp updatedate;//修改日期
- private Timestamp indate;//入库日期
- private Integer cancel;//注销表ID(迁出的时候写随机写一个数进去'
- private String memo;//备注
- private String persontel;//人员联系电话
- private Timestamp arrivedate;//来厦日期
- private Timestamp leavedate;//离籍日期
- private String conclass;//避孕方法c2n(ConClass)
- private String munitid;//主管单位id (当人员迁出或死亡的时候置为空)
- private String state;//是否有效1为有效,2为迁出,3为死亡,4为重复人口
- private String health;//健康状态
- private String relaparents;//与父母关系 Relaparents',
- private String matebwork;//配偶职业 Work
- private String workaddress;//配偶工作单位
- private String mateaddtel;//配偶户籍联系电话
- private Integer nowchilden;//现有孩数
- private Timestamp schildbirth;//最小孩子出生日期
- private Timestamp singlenodate;//领独子证时间
- private String isviolate;//是否违纪 Whether (0否,1是)
- private String ismatefarmer;// '配偶是否农户c2n(Whether)'
- private String workaddressid;//'配偶工作单位编码
- private String workname;//工作单位名称
- private Timestamp condate;//避孕日期
- private String contramemo;//避孕备注c2n(Contramemo)
- private String matedooradd;//配偶户籍地编码
- private String matedooraddinfo;//配偶户籍地详细地址
- private Timestamp fmarrydate;//初婚日期
- private String unitname;//配偶工作单位名称
- private String addtype;//人口增加类型(2出生,1迁入)
- private String zjlxdm;//
- private String qtzjhm;//
- private String fathercode;//
- private String gjdm;//
- private Timestamp dbdate;//
- private String mothercode;//
- private String familyhtype;//
- public DemographicInfo() {
- }
- public DemographicInfo(String persontype, String name, String oldname,
- String aliasname, String sex, Timestamp birth, Timestamp doorbirth,
- String cardid, String nation, String edudegree, String work,
- String party, String doorprop, String farmer, String aviso,
- String publicize, String hortation, String checktype,
- String single, Integer workid, String dooraddress,
- String dooraddressinfo, String nowaddress, String nowaddressinfo,
- String doortel, String marrytype, Timestamp marrychangedate,
- Integer mateid, String matename, String matecardid,
- Timestamp matebrith, Integer fatherid, String fathername,
- Integer materid, String matername, Integer girlcount,
- Integer boycount, Integer operatorid, String checkunit,
- Timestamp checkdate, Integer uoperatorid, String updateunit,
- Timestamp updatedate, Timestamp indate, Integer cancel,
- String memo, String persontel, Timestamp arrivedate,
- Timestamp leavedate, String conclass, String munitid, String state,
- String health, String relaparents, String matebwork,
- String workaddress, String mateaddtel, Integer nowchilden,
- Timestamp schildbirth, Timestamp singlenodate, String isviolate,
- String ismatefarmer, String workaddressid, String workname,
- Timestamp condate, String contramemo, String matedooradd,
- String matedooraddinfo, Timestamp fmarrydate, String unitname,
- String addtype, String zjlxdm, String qtzjhm, String fathercode,
- String gjdm, Timestamp dbdate, String mothercode, String familyhtype) {
- this.persontype = persontype;
- this.name = name;
- this.oldname = oldname;
- this.aliasname = aliasname;
- this.sex = sex;
- this.birth = birth;
- this.doorbirth = doorbirth;
- this.cardid = cardid;
- this.nation = nation;
- this.edudegree = edudegree;
- this.work = work;
- this.party = party;
- this.doorprop = doorprop;
- this.farmer = farmer;
- this.aviso = aviso;
- this.publicize = publicize;
- this.hortation = hortation;
- this.checktype = checktype;
- this.single = single;
- this.workid = workid;
- this.dooraddress = dooraddress;
- this.dooraddressinfo = dooraddressinfo;
- this.nowaddress = nowaddress;
- this.nowaddressinfo = nowaddressinfo;
- this.doortel = doortel;
- this.marrytype = marrytype;
- this.marrychangedate = marrychangedate;
- this.mateid = mateid;
- this.matename = matename;
- this.matecardid = matecardid;
- this.matebrith = matebrith;
- this.fatherid = fatherid;
- this.fathername = fathername;
- this.materid = materid;
- this.matername = matername;
- this.girlcount = girlcount;
- this.boycount = boycount;
- this.operatorid = operatorid;
- this.checkunit = checkunit;
- this.checkdate = checkdate;
- this.uoperatorid = uoperatorid;
- this.updateunit = updateunit;
- this.updatedate = updatedate;
- this.indate = indate;
- this.cancel = cancel;
- this.memo = memo;
- this.persontel = persontel;
- this.arrivedate = arrivedate;
- this.leavedate = leavedate;
- this.conclass = conclass;
- this.munitid = munitid;
- this.state = state;
- this.health = health;
- this.relaparents = relaparents;
- this.matebwork = matebwork;
- this.workaddress = workaddress;
- this.mateaddtel = mateaddtel;
- this.nowchilden = nowchilden;
- this.schildbirth = schildbirth;
- this.singlenodate = singlenodate;
- this.isviolate = isviolate;
- this.ismatefarmer = ismatefarmer;
- this.workaddressid = workaddressid;
- this.workname = workname;
- this.condate = condate;
- this.contramemo = contramemo;
- this.matedooradd = matedooradd;
- this.matedooraddinfo = matedooraddinfo;
- this.fmarrydate = fmarrydate;
- this.unitname = unitname;
- this.addtype = addtype;
- this.zjlxdm = zjlxdm;
- this.qtzjhm = qtzjhm;
- this.fathercode = fathercode;
- this.gjdm = gjdm;
- this.dbdate = dbdate;
- this.mothercode = mothercode;
- this.familyhtype = familyhtype;
- }
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- @Column(name = "PERSONID", unique = true, nullable = false)
- public Integer getPersonid() {
- return this.personid;
- }
- public void setPersonid(Integer personid) {
- this.personid = personid;
- }
- @Column(name = "PERSONTYPE", length = 1)
- public String getPersontype() {
- return this.persontype;
- }
- public void setPersontype(String persontype) {
- this.persontype = persontype;
- }
- @Column(name = "NAME", length = 20)
- public String getName() {
- return this.name;
- }
- public void setName(String name) {
- this.name = name;
- }
- @Column(name = "OLDNAME", length = 20)
- public String getOldname() {
- return this.oldname;
- }
- public void setOldname(String oldname) {
- this.oldname = oldname;
- }
- @Column(name = "ALIASNAME", length = 20)
- public String getAliasname() {
- return this.aliasname;
- }
- public void setAliasname(String aliasname) {
- this.aliasname = aliasname;
- }
- @Column(name = "SEX", length = 1)
- public String getSex() {
- return this.sex;
- }
- public void setSex(String sex) {
- this.sex = sex;
- }
- @Column(name = "BIRTH", length = 0)
- public Timestamp getBirth() {
- return this.birth;
- }
- public void setBirth(Timestamp birth) {
- this.birth = birth;
- }
- @Column(name = "DOORBIRTH", length = 0)
- public Timestamp getDoorbirth() {
- return this.doorbirth;
- }
- public void setDoorbirth(Timestamp doorbirth) {
- this.doorbirth = doorbirth;
- }
- @Column(name = "CARDID", length = 18)
- public String getCardid() {
- return this.cardid;
- }
- public void setCardid(String cardid) {
- this.cardid = cardid;
- }
- @Column(name = "NATION", length = 2)
- public String getNation() {
- return this.nation;
- }
- public void setNation(String nation) {
- this.nation = nation;
- }
- @Column(name = "EDUDEGREE", length = 2)
- public String getEdudegree() {
- return this.edudegree;
- }
- public void setEdudegree(String edudegree) {
- this.edudegree = edudegree;
- }
- @Column(name = "WORK", length = 3)
- public String getWork() {
- return this.work;
- }
- public void setWork(String work) {
- this.work = work;
- }
- @Column(name = "PARTY", length = 2)
- public String getParty() {
- return this.party;
- }
- public void setParty(String party) {
- this.party = party;
- }
- @Column(name = "DOORPROP", length = 2)
- public String getDoorprop() {
- return this.doorprop;
- }
- public void setDoorprop(String doorprop) {
- this.doorprop = doorprop;
- }
- @Column(name = "FARMER", length = 1)
- public String getFarmer() {
- return this.farmer;
- }
- public void setFarmer(String farmer) {
- this.farmer = farmer;
- }
- @Column(name = "AVISO", length = 1)
- public String getAviso() {
- return this.aviso;
- }
- public void setAviso(String aviso) {
- this.aviso = aviso;
- }
- @Column(name = "PUBLICIZE", length = 1)
- public String getPublicize() {
- return this.publicize;
- }
- public void setPublicize(String publicize) {
- this.publicize = publicize;
- }
- @Column(name = "HORTATION", length = 1)
- public String getHortation() {
- return this.hortation;
- }
- public void setHortation(String hortation) {
- this.hortation = hortation;
- }
- @Column(name = "CHECKTYPE", length = 1)
- public String getChecktype() {
- return this.checktype;
- }
- public void setChecktype(String checktype) {
- this.checktype = checktype;
- }
- @Column(name = "SINGLE", length = 1)
- public String getSingle() {
- return this.single;
- }
- public void setSingle(String single) {
- this.single = single;
- }
- @Column(name = "WORKID")
- public Integer getWorkid() {
- return this.workid;
- }
- public void setWorkid(Integer workid) {
- this.workid = workid;
- }
- @Column(name = "DOORADDRESS", length = 12)
- public String getDooraddress() {
- return this.dooraddress;
- }
- public void setDooraddress(String dooraddress) {
- this.dooraddress = dooraddress;
- }
- @Column(name = "DOORADDRESSINFO", length = 100)
- public String getDooraddressinfo() {
- return this.dooraddressinfo;
- }
- public void setDooraddressinfo(String dooraddressinfo) {
- this.dooraddressinfo = dooraddressinfo;
- }
- @Column(name = "NOWADDRESS", length = 12)
- public String getNowaddress() {
- return this.nowaddress;
- }
- public void setNowaddress(String nowaddress) {
- this.nowaddress = nowaddress;
- }
- @Column(name = "NOWADDRESSINFO", length = 100)
- public String getNowaddressinfo() {
- return this.nowaddressinfo;
- }
- public void setNowaddressinfo(String nowaddressinfo) {
- this.nowaddressinfo = nowaddressinfo;
- }
- @Column(name = "DOORTEL", length = 60)
- public String getDoortel() {
- return this.doortel;
- }
- public void setDoortel(String doortel) {
- this.doortel = doortel;
- }
- @Column(name = "MARRYTYPE", length = 2)
- public String getMarrytype() {
- return this.marrytype;
- }
- public void setMarrytype(String marrytype) {
- this.marrytype = marrytype;
- }
- @Column(name = "MARRYCHANGEDATE", length = 0)
- public Timestamp getMarrychangedate() {
- return this.marrychangedate;
- }
- public void setMarrychangedate(Timestamp marrychangedate) {
- this.marrychangedate = marrychangedate;
- }
- @Column(name = "MATEID")
- public Integer getMateid() {
- return this.mateid;
- }
- public void setMateid(Integer mateid) {
- this.mateid = mateid;
- }
- @Column(name = "MATENAME", length = 30)
- public String getMatename() {
- return this.matename;
- }
- public void setMatename(String matename) {
- this.matename = matename;
- }
- @Column(name = "MATECARDID", length = 18)
- public String getMatecardid() {
- return this.matecardid;
- }
- public void setMatecardid(String matecardid) {
- this.matecardid = matecardid;
- }
- @Column(name = "MATEBRITH", length = 0)
- public Timestamp getMatebrith() {
- return this.matebrith;
- }
- public void setMatebrith(Timestamp matebrith) {
- this.matebrith = matebrith;
- }
- @Column(name = "FATHERID")
- public Integer getFatherid() {
- return this.fatherid;
- }
- public void setFatherid(Integer fatherid) {
- this.fatherid = fatherid;
- }
- @Column(name = "FATHERNAME", length = 20)
- public String getFathername() {
- return this.fathername;
- }
- public void setFathername(String fathername) {
- this.fathername = fathername;
- }
- @Column(name = "MATERID")
- public Integer getMaterid() {
- return this.materid;
- }
- public void setMaterid(Integer materid) {
- this.materid = materid;
- }
- @Column(name = "MATERNAME", length = 20)
- public String getMatername() {
- return this.matername;
- }
- public void setMatername(String matername) {
- this.matername = matername;
- }
- @Column(name = "GIRLCOUNT")
- public Integer getGirlcount() {
- return this.girlcount;
- }
- public void setGirlcount(Integer girlcount) {
- this.girlcount = girlcount;
- }
- @Column(name = "BOYCOUNT")
- public Integer getBoycount() {
- return this.boycount;
- }
- public void setBoycount(Integer boycount) {
- this.boycount = boycount;
- }
- @Column(name = "OPERATORID")
- public Integer getOperatorid() {
- return this.operatorid;
- }
- public void setOperatorid(Integer operatorid) {
- this.operatorid = operatorid;
- }
- @Column(name = "CHECKUNIT", length = 12)
- public String getCheckunit() {
- return this.checkunit;
- }
- public void setCheckunit(String checkunit) {
- this.checkunit = checkunit;
- }
- @Column(name = "CHECKDATE", length = 0)
- public Timestamp getCheckdate() {
- return this.checkdate;
- }
- public void setCheckdate(Timestamp checkdate) {
- this.checkdate = checkdate;
- }
- @Column(name = "UOPERATORID")
- public Integer getUoperatorid() {
- return this.uoperatorid;
- }
- public void setUoperatorid(Integer uoperatorid) {
- this.uoperatorid = uoperatorid;
- }
- @Column(name = "UPDATEUNIT", length = 12)
- public String getUpdateunit() {
- return this.updateunit;
- }
- public void setUpdateunit(String updateunit) {
- this.updateunit = updateunit;
- }
- @Column(name = "UPDATEDATE", length = 0)
- public Timestamp getUpdatedate() {
- return this.updatedate;
- }
- public void setUpdatedate(Timestamp updatedate) {
- this.updatedate = updatedate;
- }
- @Column(name = "INDATE", length = 0)
- public Timestamp getIndate() {
- return this.indate;
- }
- public void setIndate(Timestamp indate) {
- this.indate = indate;
- }
- @Column(name = "CANCEL")
- public Integer getCancel() {
- return this.cancel;
- }
- public void setCancel(Integer cancel) {
- this.cancel = cancel;
- }
- @Column(name = "MEMO", length = 210)
- public String getMemo() {
- return this.memo;
- }
- public void setMemo(String memo) {
- this.memo = memo;
- }
- @Column(name = "PERSONTEL", length = 60)
- public String getPersontel() {
- return this.persontel;
- }
- public void setPersontel(String persontel) {
- this.persontel = persontel;
- }
- @Column(name = "ARRIVEDATE", length = 0)
- public Timestamp getArrivedate() {
- return this.arrivedate;
- }
- public void setArrivedate(Timestamp arrivedate) {
- this.arrivedate = arrivedate;
- }
- @Column(name = "LEAVEDATE", length = 0)
- public Timestamp getLeavedate() {
- return this.leavedate;
- }
- public void setLeavedate(Timestamp leavedate) {
- this.leavedate = leavedate;
- }
- @Column(name = "CONCLASS", length = 3)
- public String getConclass() {
- return this.conclass;
- }
- public void setConclass(String conclass) {
- this.conclass = conclass;
- }
- @Column(name = "MUNITID", length = 12)
- public String getMunitid() {
- return this.munitid;
- }
- public void setMunitid(String munitid) {
- this.munitid = munitid;
- }
- @Column(name = "STATE", length = 1)
- public String getState() {
- return this.state;
- }
- public void setState(String state) {
- this.state = state;
- }
- @Column(name = "HEALTH", length = 2)
- public String getHealth() {
- return this.health;
- }
- public void setHealth(String health) {
- this.health = health;
- }
- @Column(name = "RELAPARENTS", length = 2)
- public String getRelaparents() {
- return this.relaparents;
- }
- public void setRelaparents(String relaparents) {
- this.relaparents = relaparents;
- }
- @Column(name = "MATEBWORK", length = 3)
- public String getMatebwork() {
- return this.matebwork;
- }
- public void setMatebwork(String matebwork) {
- this.matebwork = matebwork;
- }
- @Column(name = "WORKADDRESS", length = 100)
- public String getWorkaddress() {
- return this.workaddress;
- }
- public void setWorkaddress(String workaddress) {
- this.workaddress = workaddress;
- }
- @Column(name = "MATEADDTEL", length = 60)
- public String getMateaddtel() {
- return this.mateaddtel;
- }
- public void setMateaddtel(String mateaddtel) {
- this.mateaddtel = mateaddtel;
- }
- @Column(name = "NOWCHILDEN")
- public Integer getNowchilden() {
- return this.nowchilden;
- }
- public void setNowchilden(Integer nowchilden) {
- this.nowchilden = nowchilden;
- }
- @Column(name = "SCHILDBIRTH", length = 0)
- public Timestamp getSchildbirth() {
- return this.schildbirth;
- }
- public void setSchildbirth(Timestamp schildbirth) {
- this.schildbirth = schildbirth;
- }
- @Column(name = "SINGLENODATE", length = 0)
- public Timestamp getSinglenodate() {
- return this.singlenodate;
- }
- public void setSinglenodate(Timestamp singlenodate) {
- this.singlenodate = singlenodate;
- }
- @Column(name = "ISVIOLATE", length = 1)
- public String getIsviolate() {
- return this.isviolate;
- }
- public void setIsviolate(String isviolate) {
- this.isviolate = isviolate;
- }
- @Column(name = "ISMATEFARMER", length = 2)
- public String getIsmatefarmer() {
- return this.ismatefarmer;
- }
- public void setIsmatefarmer(String ismatefarmer) {
- this.ismatefarmer = ismatefarmer;
- }
- @Column(name = "WORKADDRESSID", length = 12)
- public String getWorkaddressid() {
- return this.workaddressid;
- }
- public void setWorkaddressid(String workaddressid) {
- this.workaddressid = workaddressid;
- }
- @Column(name = "WORKNAME", length = 100)
- public String getWorkname() {
- return this.workname;
- }
- public void setWorkname(String workname) {
- this.workname = workname;
- }
- @Column(name = "CONDATE", length = 0)
- public Timestamp getCondate() {
- return this.condate;
- }
- public void setCondate(Timestamp condate) {
- this.condate = condate;
- }
- @Column(name = "CONTRAMEMO", length = 3)
- public String getContramemo() {
- return this.contramemo;
- }
- public void setContramemo(String contramemo) {
- this.contramemo = contramemo;
- }
- @Column(name = "MATEDOORADD", length = 12)
- public String getMatedooradd() {
- return this.matedooradd;
- }
- public void setMatedooradd(String matedooradd) {
- this.matedooradd = matedooradd;
- }
- @Column(name = "MATEDOORADDINFO", length = 100)
- public String getMatedooraddinfo() {
- return this.matedooraddinfo;
- }
- public void setMatedooraddinfo(String matedooraddinfo) {
- this.matedooraddinfo = matedooraddinfo;
- }
- @Column(name = "FMARRYDATE", length = 0)
- public Timestamp getFmarrydate() {
- return this.fmarrydate;
- }
- public void setFmarrydate(Timestamp fmarrydate) {
- this.fmarrydate = fmarrydate;
- }
- @Column(name = "UNITNAME", length = 100)
- public String getUnitname() {
- return this.unitname;
- }
- public void setUnitname(String unitname) {
- this.unitname = unitname;
- }
- @Column(name = "ADDTYPE", length = 1)
- public String getAddtype() {
- return this.addtype;
- }
- public void setAddtype(String addtype) {
- this.addtype = addtype;
- }
- @Column(name = "ZJLXDM", length = 3)
- public String getZjlxdm() {
- return this.zjlxdm;
- }
- public void setZjlxdm(String zjlxdm) {
- this.zjlxdm = zjlxdm;
- }
- @Column(name = "QTZJHM", length = 20)
- public String getQtzjhm() {
- return this.qtzjhm;
- }
- public void setQtzjhm(String qtzjhm) {
- this.qtzjhm = qtzjhm;
- }
- @Column(name = "FATHERCODE", length = 18)
- public String getFathercode() {
- return this.fathercode;
- }
- public void setFathercode(String fathercode) {
- this.fathercode = fathercode;
- }
- @Column(name = "GJDM", length = 3)
- public String getGjdm() {
- return this.gjdm;
- }
- public void setGjdm(String gjdm) {
- this.gjdm = gjdm;
- }
- @Column(name = "DBDATE", length = 0)
- public Timestamp getDbdate() {
- return this.dbdate;
- }
- public void setDbdate(Timestamp dbdate) {
- this.dbdate = dbdate;
- }
- @Column(name = "MOTHERCODE", length = 18)
- public String getMothercode() {
- return this.mothercode;
- }
- public void setMothercode(String mothercode) {
- this.mothercode = mothercode;
- }
- @Column(name = "FAMILYHTYPE", length = 2)
- public String getFamilyhtype() {
- return this.familyhtype;
- }
- public void setFamilyhtype(String familyhtype) {
- this.familyhtype = familyhtype;
- }
- }
|