123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- package com.huimv.da.dataobject;
- import com.huimv.xt.dataobject.BaseDO;
- import java.util.Date;
- public class DaZqls extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column da_zqls.ID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column da_zqls.LQID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- private Integer lqid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column da_zqls.OLDLQID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- private Integer oldlqid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column da_zqls.DWEB
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- private String dweb;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column da_zqls.ZQSJ
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- private Date zqsj;
- private String lqmc;
-
- private String oldlqmc;
-
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column da_zqls.ID
- *
- * @return the value of da_zqls.ID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column da_zqls.ID
- *
- * @param id the value for da_zqls.ID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 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 da_zqls.LQID
- *
- * @return the value of da_zqls.LQID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public Integer getLqid() {
- return lqid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column da_zqls.LQID
- *
- * @param lqid the value for da_zqls.LQID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public void setLqid(Integer lqid) {
- this.lqid = lqid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column da_zqls.OLDLQID
- *
- * @return the value of da_zqls.OLDLQID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public Integer getOldlqid() {
- return oldlqid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column da_zqls.OLDLQID
- *
- * @param oldlqid the value for da_zqls.OLDLQID
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public void setOldlqid(Integer oldlqid) {
- this.oldlqid = oldlqid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column da_zqls.DWEB
- *
- * @return the value of da_zqls.DWEB
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public String getDweb() {
- return dweb;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column da_zqls.DWEB
- *
- * @param dweb the value for da_zqls.DWEB
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public void setDweb(String dweb) {
- this.dweb = dweb == null ? null : dweb.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column da_zqls.ZQSJ
- *
- * @return the value of da_zqls.ZQSJ
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public Date getZqsj() {
- return zqsj;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column da_zqls.ZQSJ
- *
- * @param zqsj the value for da_zqls.ZQSJ
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- public void setZqsj(Date zqsj) {
- this.zqsj = zqsj;
- }
- public String getLqmc() {
- return lqmc;
- }
- public void setLqmc(String lqmc) {
- this.lqmc = lqmc;
- }
- public String getOldlqmc() {
- return oldlqmc;
- }
- public void setOldlqmc(String oldlqmc) {
- this.oldlqmc = oldlqmc;
- }
- }
|