12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.huimv.xt.dataobject;
- public class XtYhjsKey extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_yhjs.jsid
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- private Integer jsid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_yhjs.yhid
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- private Integer yhid;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_yhjs.jsid
- *
- * @return the value of xt_yhjs.jsid
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- public Integer getJsid() {
- return jsid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_yhjs.jsid
- *
- * @param jsid the value for xt_yhjs.jsid
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- public void setJsid(Integer jsid) {
- this.jsid = jsid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_yhjs.yhid
- *
- * @return the value of xt_yhjs.yhid
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- public Integer getYhid() {
- return yhid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_yhjs.yhid
- *
- * @param yhid the value for xt_yhjs.yhid
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- public void setYhid(Integer yhid) {
- this.yhid = yhid;
- }
- }
|