123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package com.huimv.xt.dataobject;
- import java.util.Date;
- public class XtTlgyckz extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_tlg_yckz.ID
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_tlg_yckz.JQID
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- private String jqid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_tlg_yckz.YXCS
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- private String yxcs;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_tlg_yckz.SCSJ
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- private Date scsj;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xt_tlg_yckz.SFTS
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- private String sfts;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_tlg_yckz.ID
- *
- * @return the value of xt_tlg_yckz.ID
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_tlg_yckz.ID
- *
- * @param id the value for xt_tlg_yckz.ID
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- 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 xt_tlg_yckz.JQID
- *
- * @return the value of xt_tlg_yckz.JQID
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public String getJqid() {
- return jqid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_tlg_yckz.JQID
- *
- * @param jqid the value for xt_tlg_yckz.JQID
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public void setJqid(String jqid) {
- this.jqid = jqid == null ? null : jqid.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_tlg_yckz.YXCS
- *
- * @return the value of xt_tlg_yckz.YXCS
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public String getYxcs() {
- return yxcs;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_tlg_yckz.YXCS
- *
- * @param yxcs the value for xt_tlg_yckz.YXCS
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public void setYxcs(String yxcs) {
- this.yxcs = yxcs == null ? null : yxcs.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_tlg_yckz.SCSJ
- *
- * @return the value of xt_tlg_yckz.SCSJ
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public Date getScsj() {
- return scsj;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_tlg_yckz.SCSJ
- *
- * @param scsj the value for xt_tlg_yckz.SCSJ
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public void setScsj(Date scsj) {
- this.scsj = scsj;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xt_tlg_yckz.SFTS
- *
- * @return the value of xt_tlg_yckz.SFTS
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public String getSfts() {
- return sfts;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xt_tlg_yckz.SFTS
- *
- * @param sfts the value for xt_tlg_yckz.SFTS
- *
- * @ibatorgenerated Wed Nov 20 15:56:50 CST 2019
- */
- public void setSfts(String sfts) {
- this.sfts = sfts == null ? null : sfts.trim();
- }
- }
|