| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- package com.goafanti.common.model;
- import java.util.Date;
- public class IdleContractNo {
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column idle_contract_no.id
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- private Integer id;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column idle_contract_no.abbreviation
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- private String abbreviation;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column idle_contract_no.used_order_no
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- private String usedOrderNo;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column idle_contract_no.contract_no
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- private String contractNo;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column idle_contract_no.aid
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- private String aid;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column idle_contract_no.create_time
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- private Date createTime;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column idle_contract_no.id
- *
- * @return the value of idle_contract_no.id
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column idle_contract_no.id
- *
- * @param id the value for idle_contract_no.id
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column idle_contract_no.abbreviation
- *
- * @return the value of idle_contract_no.abbreviation
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public String getAbbreviation() {
- return abbreviation;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column idle_contract_no.abbreviation
- *
- * @param abbreviation the value for idle_contract_no.abbreviation
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public void setAbbreviation(String abbreviation) {
- this.abbreviation = abbreviation;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column idle_contract_no.used_order_no
- *
- * @return the value of idle_contract_no.used_order_no
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public String getUsedOrderNo() {
- return usedOrderNo;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column idle_contract_no.used_order_no
- *
- * @param usedOrderNo the value for idle_contract_no.used_order_no
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public void setUsedOrderNo(String usedOrderNo) {
- this.usedOrderNo = usedOrderNo;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column idle_contract_no.contract_no
- *
- * @return the value of idle_contract_no.contract_no
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public String getContractNo() {
- return contractNo;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column idle_contract_no.contract_no
- *
- * @param contractNo the value for idle_contract_no.contract_no
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public void setContractNo(String contractNo) {
- this.contractNo = contractNo;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column idle_contract_no.aid
- *
- * @return the value of idle_contract_no.aid
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public String getAid() {
- return aid;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column idle_contract_no.aid
- *
- * @param aid the value for idle_contract_no.aid
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public void setAid(String aid) {
- this.aid = aid;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column idle_contract_no.create_time
- *
- * @return the value of idle_contract_no.create_time
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column idle_contract_no.create_time
- *
- * @param createTime the value for idle_contract_no.create_time
- *
- * @mbg.generated Mon Sep 30 16:05:15 CST 2019
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|