12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.huimv.xt.dataobject;
- public class XtGydmKey extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_gydm.DMID
- *
- * @ibatorgenerated Fri May 30 10:23:18 CST 2014
- */
- private String dmid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_gydm.LBID
- *
- * @ibatorgenerated Fri May 30 10:23:18 CST 2014
- */
- private Integer lbid;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_gydm.DMID
- *
- * @return the value of xt_gydm.DMID
- *
- * @ibatorgenerated Fri May 30 10:23:18 CST 2014
- */
- public String getDmid() {
- return dmid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_gydm.DMID
- *
- * @param dmid the value for xt_gydm.DMID
- *
- * @ibatorgenerated Fri May 30 10:23:18 CST 2014
- */
- public void setDmid(String dmid) {
- this.dmid = dmid == null ? null : dmid.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_gydm.LBID
- *
- * @return the value of xt_gydm.LBID
- *
- * @ibatorgenerated Fri May 30 10:23:18 CST 2014
- */
- public Integer getLbid() {
- return lbid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_gydm.LBID
- *
- * @param lbid the value for xt_gydm.LBID
- *
- * @ibatorgenerated Fri May 30 10:23:18 CST 2014
- */
- public void setLbid(Integer lbid) {
- this.lbid = lbid;
- }
- }
|