123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package com.huimv.xt.dataobject;
- public class XtWxh extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_wxh.YHID
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- private Integer yhid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_wxh.WXH
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- private String wxh;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_wxh.SFBD
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- private Integer sfbd;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_wxh.YHID
- *
- * @return the value of xt_wxh.YHID
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- public Integer getYhid() {
- return yhid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_wxh.YHID
- *
- * @param yhid the value for xt_wxh.YHID
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- public void setYhid(Integer yhid) {
- this.yhid = yhid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_wxh.WXH
- *
- * @return the value of xt_wxh.WXH
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- public String getWxh() {
- return wxh;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_wxh.WXH
- *
- * @param wxh the value for xt_wxh.WXH
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- public void setWxh(String wxh) {
- this.wxh = wxh == null ? null : wxh.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_wxh.SFBD
- *
- * @return the value of xt_wxh.SFBD
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- public Integer getSfbd() {
- return sfbd;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_wxh.SFBD
- *
- * @param sfbd the value for xt_wxh.SFBD
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- public void setSfbd(Integer sfbd) {
- this.sfbd = sfbd;
- }
-
- private String yhm;
- public String getYhm() {
- return yhm;
- }
- public void setYhm(String yhm) {
- this.yhm = yhm;
- }
- }
|