123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- package com.huimv.xt.dataobject;
- public class XtHzzd extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_hzzd.xh
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- private Integer xh;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_hzzd.word
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- private String word;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_hzzd.srm1
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- private String srm1;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_hzzd.srm2
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- private String srm2;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_hzzd.srm3
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- private String srm3;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_hzzd.xh
- *
- * @return the value of xt_hzzd.xh
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public Integer getXh() {
- return xh;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_hzzd.xh
- *
- * @param xh the value for xt_hzzd.xh
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public void setXh(Integer xh) {
- this.xh = xh;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_hzzd.word
- *
- * @return the value of xt_hzzd.word
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public String getWord() {
- return word;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_hzzd.word
- *
- * @param word the value for xt_hzzd.word
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public void setWord(String word) {
- this.word = word == null ? null : word.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_hzzd.srm1
- *
- * @return the value of xt_hzzd.srm1
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public String getSrm1() {
- return srm1;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_hzzd.srm1
- *
- * @param srm1 the value for xt_hzzd.srm1
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public void setSrm1(String srm1) {
- this.srm1 = srm1 == null ? null : srm1.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_hzzd.srm2
- *
- * @return the value of xt_hzzd.srm2
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public String getSrm2() {
- return srm2;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_hzzd.srm2
- *
- * @param srm2 the value for xt_hzzd.srm2
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public void setSrm2(String srm2) {
- this.srm2 = srm2 == null ? null : srm2.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_hzzd.srm3
- *
- * @return the value of xt_hzzd.srm3
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public String getSrm3() {
- return srm3;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_hzzd.srm3
- *
- * @param srm3 the value for xt_hzzd.srm3
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- public void setSrm3(String srm3) {
- this.srm3 = srm3 == null ? null : srm3.trim();
- }
- }
|