123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- package com.huimv.face.dataobject;
- import com.huimv.xt.dataobject.BaseDO;
- import java.util.Date;
- public class FaceReco extends BaseDO {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column face_reco.ID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- private Integer id;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column face_reco.USERID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- private String userid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column face_reco.SBID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- private String sbid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column face_reco.MCID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- private Integer mcid;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database column face_reco.XGSJ
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- private Date xgsj;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column face_reco.ID
- *
- * @return the value of face_reco.ID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column face_reco.ID
- *
- * @param id the value for face_reco.ID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 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 face_reco.USERID
- *
- * @return the value of face_reco.USERID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public String getUserid() {
- return userid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column face_reco.USERID
- *
- * @param userid the value for face_reco.USERID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public void setUserid(String userid) {
- this.userid = userid == null ? null : userid.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column face_reco.SBID
- *
- * @return the value of face_reco.SBID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public String getSbid() {
- return sbid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column face_reco.SBID
- *
- * @param sbid the value for face_reco.SBID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public void setSbid(String sbid) {
- this.sbid = sbid == null ? null : sbid.trim();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column face_reco.MCID
- *
- * @return the value of face_reco.MCID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public Integer getMcid() {
- return mcid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column face_reco.MCID
- *
- * @param mcid the value for face_reco.MCID
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public void setMcid(Integer mcid) {
- this.mcid = mcid;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method returns the value of the database column face_reco.XGSJ
- *
- * @return the value of face_reco.XGSJ
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public Date getXgsj() {
- return xgsj;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method sets the value of the database column face_reco.XGSJ
- *
- * @param xgsj the value for face_reco.XGSJ
- *
- * @ibatorgenerated Mon Oct 14 13:33:12 CST 2019
- */
- public void setXgsj(Date xgsj) {
- this.xgsj = xgsj;
- }
- }
|