123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.huimv.xx.dataobject;
- import com.huimv.xt.dataobject.BaseDO;
- public class XxTjfx extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xx_tjfx.id
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xx_tjfx.timestamp
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- private String timestamp;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xx_tjfx.bt
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- private String bt;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xx_tjfx.zy
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- private String zy;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xx_tjfx.zw
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- private String zw;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column xx_tjfx.fm
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- private String fm;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xx_tjfx.id
- *
- * @return the value of xx_tjfx.id
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xx_tjfx.id
- *
- * @param id the value for xx_tjfx.id
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 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 xx_tjfx.timestamp
- *
- * @return the value of xx_tjfx.timestamp
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public String getTimestamp() {
- return timestamp;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xx_tjfx.timestamp
- *
- * @param timestamp the value for xx_tjfx.timestamp
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public void setTimestamp(String timestamp) {
- this.timestamp = timestamp == null ? null : timestamp.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xx_tjfx.bt
- *
- * @return the value of xx_tjfx.bt
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public String getBt() {
- return bt;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xx_tjfx.bt
- *
- * @param bt the value for xx_tjfx.bt
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public void setBt(String bt) {
- this.bt = bt == null ? null : bt.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xx_tjfx.zy
- *
- * @return the value of xx_tjfx.zy
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public String getZy() {
- return zy;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xx_tjfx.zy
- *
- * @param zy the value for xx_tjfx.zy
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public void setZy(String zy) {
- this.zy = zy == null ? null : zy.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xx_tjfx.zw
- *
- * @return the value of xx_tjfx.zw
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public String getZw() {
- return zw;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xx_tjfx.zw
- *
- * @param zw the value for xx_tjfx.zw
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public void setZw(String zw) {
- this.zw = zw == null ? null : zw.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column xx_tjfx.fm
- *
- * @return the value of xx_tjfx.fm
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public String getFm() {
- return fm;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column xx_tjfx.fm
- *
- * @param fm the value for xx_tjfx.fm
- *
- * @ibatorgenerated Fri Nov 13 19:51:54 CST 2015
- */
- public void setFm(String fm) {
- this.fm = fm == null ? null : fm.trim();
- }
- }
|