123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- 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();
- }
- }
|