123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.js.kbt.model;
- import java.util.Date;
- public class Vcode {
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.id
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- private Integer id;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.mobile
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- private String mobile;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.vcode
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- private String vcode;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column vcode.indate
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- private Date indate;
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.id
- * @return the value of vcode.id
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.id
- * @param id the value for vcode.id
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.mobile
- * @return the value of vcode.mobile
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public String getMobile() {
- return mobile;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.mobile
- * @param mobile the value for vcode.mobile
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.vcode
- * @return the value of vcode.vcode
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public String getVcode() {
- return vcode;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.vcode
- * @param vcode the value for vcode.vcode
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public void setVcode(String vcode) {
- this.vcode = vcode;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column vcode.indate
- * @return the value of vcode.indate
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public Date getIndate() {
- return indate;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column vcode.indate
- * @param indate the value for vcode.indate
- * @mbggenerated Tue Jul 04 16:24:58 CST 2017
- */
- public void setIndate(Date indate) {
- this.indate = indate;
- }
- }
|