package com.huimv.lierda.dataobject; import com.huimv.xt.dataobject.BaseDO; import java.util.Date; public class LierdaYdsc extends BaseDO { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column lierda_ydsc.ID * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ private Integer id; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column lierda_ydsc.MAC * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ private String mac; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column lierda_ydsc.DQMS * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ private Integer dqms; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column lierda_ydsc.SCSJ * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ private Date scsj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column lierda_ydsc.XS * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ private Integer xs; /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column lierda_ydsc.ID * * @return the value of lierda_ydsc.ID * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public Integer getId() { return id; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column lierda_ydsc.ID * * @param id the value for lierda_ydsc.ID * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ 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 lierda_ydsc.MAC * * @return the value of lierda_ydsc.MAC * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public String getMac() { return mac; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column lierda_ydsc.MAC * * @param mac the value for lierda_ydsc.MAC * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public void setMac(String mac) { this.mac = mac == null ? null : mac.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column lierda_ydsc.DQMS * * @return the value of lierda_ydsc.DQMS * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public Integer getDqms() { return dqms; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column lierda_ydsc.DQMS * * @param dqms the value for lierda_ydsc.DQMS * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public void setDqms(Integer dqms) { this.dqms = dqms; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column lierda_ydsc.SCSJ * * @return the value of lierda_ydsc.SCSJ * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public Date getScsj() { return scsj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column lierda_ydsc.SCSJ * * @param scsj the value for lierda_ydsc.SCSJ * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public void setScsj(Date scsj) { this.scsj = scsj; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column lierda_ydsc.XS * * @return the value of lierda_ydsc.XS * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public Integer getXs() { return xs; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column lierda_ydsc.XS * * @param xs the value for lierda_ydsc.XS * * @ibatorgenerated Fri Sep 20 15:50:20 CST 2019 */ public void setXs(Integer xs) { this.xs = xs; } }