| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- package com.goafanti.common.model;
- import java.util.Date;
- public class Contract {
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.id
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String id;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.serial_number
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Integer serialNumber;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.create_time
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Date createTime;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.update_time
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Date updateTime;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.creater
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String creater;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.name
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String name;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.type
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String type;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.principal
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String principal;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.uid
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String uid;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.sign_date
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Date signDate;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.sign_comment
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String signComment;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.complete_date
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Date completeDate;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.complete_comment
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String completeComment;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.deleted_sign
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Integer deletedSign;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.order_no
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String orderNo;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.status
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Integer status;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.contacts
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String contacts;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.contact_mobile
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private String contactMobile;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column contract.task_distribution
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- private Integer taskDistribution;
-
-
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.id
- * @return the value of contract.id
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.id
- * @param id the value for contract.id
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setId(String id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.serial_number
- * @return the value of contract.serial_number
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Integer getSerialNumber() {
- return serialNumber;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.serial_number
- * @param serialNumber the value for contract.serial_number
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setSerialNumber(Integer serialNumber) {
- this.serialNumber = serialNumber;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.create_time
- * @return the value of contract.create_time
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.create_time
- * @param createTime the value for contract.create_time
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.update_time
- * @return the value of contract.update_time
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Date getUpdateTime() {
- return updateTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.update_time
- * @param updateTime the value for contract.update_time
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.creater
- * @return the value of contract.creater
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getCreater() {
- return creater;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.creater
- * @param creater the value for contract.creater
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setCreater(String creater) {
- this.creater = creater;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.name
- * @return the value of contract.name
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getName() {
- return name;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.name
- * @param name the value for contract.name
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setName(String name) {
- this.name = name;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.type
- * @return the value of contract.type
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getType() {
- return type;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.type
- * @param type the value for contract.type
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setType(String type) {
- this.type = type;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.principal
- * @return the value of contract.principal
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getPrincipal() {
- return principal;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.principal
- * @param principal the value for contract.principal
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setPrincipal(String principal) {
- this.principal = principal;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.uid
- * @return the value of contract.uid
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getUid() {
- return uid;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.uid
- * @param uid the value for contract.uid
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setUid(String uid) {
- this.uid = uid;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.sign_date
- * @return the value of contract.sign_date
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Date getSignDate() {
- return signDate;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.sign_date
- * @param signDate the value for contract.sign_date
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setSignDate(Date signDate) {
- this.signDate = signDate;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.sign_comment
- * @return the value of contract.sign_comment
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getSignComment() {
- return signComment;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.sign_comment
- * @param signComment the value for contract.sign_comment
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setSignComment(String signComment) {
- this.signComment = signComment;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.complete_date
- * @return the value of contract.complete_date
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Date getCompleteDate() {
- return completeDate;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.complete_date
- * @param completeDate the value for contract.complete_date
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setCompleteDate(Date completeDate) {
- this.completeDate = completeDate;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.complete_comment
- * @return the value of contract.complete_comment
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getCompleteComment() {
- return completeComment;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.complete_comment
- * @param completeComment the value for contract.complete_comment
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setCompleteComment(String completeComment) {
- this.completeComment = completeComment;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.deleted_sign
- * @return the value of contract.deleted_sign
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Integer getDeletedSign() {
- return deletedSign;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.deleted_sign
- * @param deletedSign the value for contract.deleted_sign
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setDeletedSign(Integer deletedSign) {
- this.deletedSign = deletedSign;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.order_no
- * @return the value of contract.order_no
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getOrderNo() {
- return orderNo;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.order_no
- * @param orderNo the value for contract.order_no
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.status
- * @return the value of contract.status
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Integer getStatus() {
- return status;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.status
- * @param status the value for contract.status
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setStatus(Integer status) {
- this.status = status;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.contacts
- * @return the value of contract.contacts
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getContacts() {
- return contacts;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.contacts
- * @param contacts the value for contract.contacts
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setContacts(String contacts) {
- this.contacts = contacts;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.contact_mobile
- * @return the value of contract.contact_mobile
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public String getContactMobile() {
- return contactMobile;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.contact_mobile
- * @param contactMobile the value for contract.contact_mobile
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setContactMobile(String contactMobile) {
- this.contactMobile = contactMobile;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column contract.task_distribution
- * @return the value of contract.task_distribution
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public Integer getTaskDistribution() {
- return taskDistribution;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column contract.task_distribution
- * @param taskDistribution the value for contract.task_distribution
- * @mbg.generated Wed May 02 19:56:05 CST 2018
- */
- public void setTaskDistribution(Integer taskDistribution) {
- this.taskDistribution = taskDistribution;
- }
-
- }
|