package com.huimv.wscl.dataobject; import com.huimv.xt.dataobject.BaseDO; import java.util.Date; public class WsclSbgz extends BaseDO { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.ID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private Integer id; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.MCID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private Integer mcid; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.SBID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private Integer sbid; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.GZLX * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private String gzlx; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.FSSJ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private Date fssj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.CLSJ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private Date clsj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column wscl_sbgz.SFTZ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ private String sftz; /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column wscl_sbgz.ID * * @return the value of wscl_sbgz.ID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public Integer getId() { return id; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.ID * * @param id the value for wscl_sbgz.ID * * @ibatorgenerated Tue Jul 23 17:21:17 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 wscl_sbgz.MCID * * @return the value of wscl_sbgz.MCID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public Integer getMcid() { return mcid; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.MCID * * @param mcid the value for wscl_sbgz.MCID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ 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 wscl_sbgz.SBID * * @return the value of wscl_sbgz.SBID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public Integer getSbid() { return sbid; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.SBID * * @param sbid the value for wscl_sbgz.SBID * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public void setSbid(Integer sbid) { this.sbid = sbid; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column wscl_sbgz.GZLX * * @return the value of wscl_sbgz.GZLX * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public String getGzlx() { return gzlx; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.GZLX * * @param gzlx the value for wscl_sbgz.GZLX * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public void setGzlx(String gzlx) { this.gzlx = gzlx == null ? null : gzlx.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column wscl_sbgz.FSSJ * * @return the value of wscl_sbgz.FSSJ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public Date getFssj() { return fssj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.FSSJ * * @param fssj the value for wscl_sbgz.FSSJ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public void setFssj(Date fssj) { this.fssj = fssj; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column wscl_sbgz.CLSJ * * @return the value of wscl_sbgz.CLSJ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public Date getClsj() { return clsj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.CLSJ * * @param clsj the value for wscl_sbgz.CLSJ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public void setClsj(Date clsj) { this.clsj = clsj; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column wscl_sbgz.SFTZ * * @return the value of wscl_sbgz.SFTZ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public String getSftz() { return sftz; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column wscl_sbgz.SFTZ * * @param sftz the value for wscl_sbgz.SFTZ * * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019 */ public void setSftz(String sftz) { this.sftz = sftz == null ? null : sftz.trim(); } }