123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package com.huimv.wscl.dataobject;
- import com.huimv.xt.dataobject.BaseDO;
- public class WsclSbztbg extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column wscl_sbztbg.ID
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column wscl_sbztbg.MCID
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- private Integer mcid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column wscl_sbztbg.TABLENAME
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- private String tablename;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column wscl_sbztbg.SBKEY
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- private String sbkey;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column wscl_sbztbg.KEYVAL
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- private String keyval;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column wscl_sbztbg.ID
- *
- * @return the value of wscl_sbztbg.ID
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 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_sbztbg.ID
- *
- * @param id the value for wscl_sbztbg.ID
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 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_sbztbg.MCID
- *
- * @return the value of wscl_sbztbg.MCID
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 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_sbztbg.MCID
- *
- * @param mcid the value for wscl_sbztbg.MCID
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 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_sbztbg.TABLENAME
- *
- * @return the value of wscl_sbztbg.TABLENAME
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- public String getTablename() {
- return tablename;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column wscl_sbztbg.TABLENAME
- *
- * @param tablename the value for wscl_sbztbg.TABLENAME
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- public void setTablename(String tablename) {
- this.tablename = tablename == null ? null : tablename.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column wscl_sbztbg.SBKEY
- *
- * @return the value of wscl_sbztbg.SBKEY
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- public String getSbkey() {
- return sbkey;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column wscl_sbztbg.SBKEY
- *
- * @param sbkey the value for wscl_sbztbg.SBKEY
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- public void setSbkey(String sbkey) {
- this.sbkey = sbkey == null ? null : sbkey.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column wscl_sbztbg.KEYVAL
- *
- * @return the value of wscl_sbztbg.KEYVAL
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- public String getKeyval() {
- return keyval;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column wscl_sbztbg.KEYVAL
- *
- * @param keyval the value for wscl_sbztbg.KEYVAL
- *
- * @ibatorgenerated Mon Jul 29 16:24:45 CST 2019
- */
- public void setKeyval(String keyval) {
- this.keyval = keyval == null ? null : keyval.trim();
- }
- }
|