123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- package com.huimv.xt.dataobject;
- import java.util.Date;
- import java.util.List;
- import com.huimv.dp.dto.XtLxDTO;
- public class XtLxsz extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_lxsz.ID
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_lxsz.MCID
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- private Integer mcid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_lxsz.DS
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- private String ds;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_lxsz.SLSZ
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- private String slsz;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_lxsz.SDSL
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- private String sdsl;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_lxsz.SZSJ
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- private Date szsj;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_lxsz.ID
- *
- * @return the value of xt_lxsz.ID
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_lxsz.ID
- *
- * @param id the value for xt_lxsz.ID
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_lxsz.MCID
- *
- * @return the value of xt_lxsz.MCID
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public Integer getMcid() {
- return mcid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_lxsz.MCID
- *
- * @param mcid the value for xt_lxsz.MCID
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public void setMcid(Integer mcid) {
- this.mcid = mcid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_lxsz.DS
- *
- * @return the value of xt_lxsz.DS
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public String getDs() {
- return ds;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_lxsz.DS
- *
- * @param ds the value for xt_lxsz.DS
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public void setDs(String ds) {
- this.ds = ds == null ? null : ds.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_lxsz.SLSZ
- *
- * @return the value of xt_lxsz.SLSZ
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public String getSlsz() {
- return slsz;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_lxsz.SLSZ
- *
- * @param slsz the value for xt_lxsz.SLSZ
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public void setSlsz(String slsz) {
- this.slsz = slsz == null ? null : slsz.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_lxsz.SDSL
- *
- * @return the value of xt_lxsz.SDSL
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public String getSdsl() {
- return sdsl;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_lxsz.SDSL
- *
- * @param sdsl the value for xt_lxsz.SDSL
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public void setSdsl(String sdsl) {
- this.sdsl = sdsl == null ? null : sdsl.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_lxsz.SZSJ
- *
- * @return the value of xt_lxsz.SZSJ
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public Date getSzsj() {
- return szsj;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_lxsz.SZSJ
- *
- * @param szsj the value for xt_lxsz.SZSJ
- *
- * @ibatorgenerated Fri Jan 03 14:15:33 CST 2020
- */
- public void setSzsj(Date szsj) {
- this.szsj = szsj;
- }
-
- private String qymc;
-
- private List<XtLxDTO> dtoList;
-
- public String getQymc() {
- return qymc;
- }
-
- public void setQymc(String qymc) {
- this.qymc = qymc;
- }
-
- public List<XtLxDTO> getDtoList() {
- return dtoList;
- }
-
- public void setDtoList(List<XtLxDTO> dtoList) {
- this.dtoList = dtoList;
- }
-
- }
|