package com.huimv.temp.dataobject; import com.huimv.xt.dataobject.BaseDO; public class TempConstant extends BaseDO { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column temp_constant.MCID * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ private Integer mcid; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column temp_constant.SCSJ * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ private String scsj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column temp_constant.HBSJ * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ private String hbsj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column temp_constant.FKXX * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ private String fkxx; /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column temp_constant.MCID * * @return the value of temp_constant.MCID * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public Integer getMcid() { return mcid; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column temp_constant.MCID * * @param mcid the value for temp_constant.MCID * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ 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 temp_constant.SCSJ * * @return the value of temp_constant.SCSJ * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public String getScsj() { return scsj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column temp_constant.SCSJ * * @param scsj the value for temp_constant.SCSJ * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public void setScsj(String scsj) { this.scsj = scsj == null ? null : scsj.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column temp_constant.HBSJ * * @return the value of temp_constant.HBSJ * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public String getHbsj() { return hbsj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column temp_constant.HBSJ * * @param hbsj the value for temp_constant.HBSJ * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public void setHbsj(String hbsj) { this.hbsj = hbsj == null ? null : hbsj.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column temp_constant.FKXX * * @return the value of temp_constant.FKXX * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public String getFkxx() { return fkxx; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column temp_constant.FKXX * * @param fkxx the value for temp_constant.FKXX * * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017 */ public void setFkxx(String fkxx) { this.fkxx = fkxx == null ? null : fkxx.trim(); } }