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 dtoList; public String getQymc() { return qymc; } public void setQymc(String qymc) { this.qymc = qymc; } public List getDtoList() { return dtoList; } public void setDtoList(List dtoList) { this.dtoList = dtoList; } }