123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package com.huimv.bjq.dataobject;
- import com.huimv.xt.dataobject.BaseDO;
- import java.util.Date;
- public class BjqTxmx extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column bjq_txmx.ID
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column bjq_txmx.MKBH
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- private String mkbh;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column bjq_txmx.LX
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- private String lx;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column bjq_txmx.FJBH
- *
- * @ibatorgenerated Fri Aug 07 13:35:59 CST 2015
- */
- private String fjbh;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column bjq_txmx.XGSJ
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- private Date xgsj;
- private String mcmc;
- private String zsmc;
-
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column bjq_txmx.ID
- *
- * @return the value of bjq_txmx.ID
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column bjq_txmx.ID
- *
- * @param id the value for bjq_txmx.ID
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- 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 bjq_txmx.MKBH
- *
- * @return the value of bjq_txmx.MKBH
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public String getMkbh() {
- return mkbh;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column bjq_txmx.MKBH
- *
- * @param mkbh the value for bjq_txmx.MKBH
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public void setMkbh(String mkbh) {
- this.mkbh = mkbh == null ? null : mkbh.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column bjq_txmx.LX
- *
- * @return the value of bjq_txmx.LX
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public String getLx() {
- return lx;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column bjq_txmx.LX
- *
- * @param lx the value for bjq_txmx.LX
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public void setLx(String lx) {
- this.lx = lx == null ? null : lx.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column bjq_txmx.FJBH
- *
- * @return the value of bjq_txmx.FJBH
- *
- * @ibatorgenerated Fri Aug 07 13:35:59 CST 2015
- */
- public String getFjbh() {
- return fjbh;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column bjq_txmx.FJBH
- *
- * @param fjbh the value for bjq_txmx.FJBH
- *
- * @ibatorgenerated Fri Aug 07 13:35:59 CST 2015
- */
- public void setFjbh(String fjbh) {
- this.fjbh = fjbh == null ? null : fjbh.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column bjq_txmx.XGSJ
- *
- * @return the value of bjq_txmx.XGSJ
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public Date getXgsj() {
- return xgsj;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column bjq_txmx.XGSJ
- *
- * @param xgsj the value for bjq_txmx.XGSJ
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- public void setXgsj(Date xgsj) {
- this.xgsj = xgsj;
- }
- public String getMcmc() {
- return mcmc;
- }
- public void setMcmc(String mcmc) {
- this.mcmc = mcmc;
- }
- public String getZsmc() {
- return zsmc;
- }
- public void setZsmc(String zsmc) {
- this.zsmc = zsmc;
- }
- }
|