| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- package com.goafanti.common.model;
- import java.util.Date;
- public class TOrderBack {
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.id
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private Integer id;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.order_no
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private String orderNo;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.back_status
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private Integer backStatus;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.create_time
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private Date createTime;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.initiate
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private String initiate;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.accept
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private String accept;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.reason
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private String reason;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.result
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private String result;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column t_order_back.reason_attachment_url
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- private String reasonAttachmentUrl;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.id
- *
- * @return the value of t_order_back.id
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.id
- *
- * @param id the value for t_order_back.id
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.order_no
- *
- * @return the value of t_order_back.order_no
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public String getOrderNo() {
- return orderNo;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.order_no
- *
- * @param orderNo the value for t_order_back.order_no
- *
- * @mbggenerated Tue Nov 20 11:06:11 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 t_order_back.back_status
- *
- * @return the value of t_order_back.back_status
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public Integer getBackStatus() {
- return backStatus;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.back_status
- *
- * @param backStatus the value for t_order_back.back_status
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public void setBackStatus(Integer backStatus) {
- this.backStatus = backStatus;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.create_time
- *
- * @return the value of t_order_back.create_time
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.create_time
- *
- * @param createTime the value for t_order_back.create_time
- *
- * @mbggenerated Tue Nov 20 11:06:11 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 t_order_back.initiate
- *
- * @return the value of t_order_back.initiate
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public String getInitiate() {
- return initiate;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.initiate
- *
- * @param initiate the value for t_order_back.initiate
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public void setInitiate(String initiate) {
- this.initiate = initiate;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.accept
- *
- * @return the value of t_order_back.accept
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public String getAccept() {
- return accept;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.accept
- *
- * @param accept the value for t_order_back.accept
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public void setAccept(String accept) {
- this.accept = accept;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.reason
- *
- * @return the value of t_order_back.reason
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public String getReason() {
- return reason;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.reason
- *
- * @param reason the value for t_order_back.reason
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public void setReason(String reason) {
- this.reason = reason;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.result
- *
- * @return the value of t_order_back.result
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public String getResult() {
- return result;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.result
- *
- * @param result the value for t_order_back.result
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public void setResult(String result) {
- this.result = result;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column t_order_back.reason_attachment_url
- *
- * @return the value of t_order_back.reason_attachment_url
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- */
- public String getReasonAttachmentUrl() {
- return reasonAttachmentUrl;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column t_order_back.reason_attachment_url
- *
- * @param reasonAttachmentUrl the value for t_order_back.reason_attachment_url
- *
- * @mbggenerated Tue Nov 20 11:06:11 CST 2018
- >>>>>>> refs/remotes/origin/test
- */
- public void setReasonAttachmentUrl(String reasonAttachmentUrl) {
- this.reasonAttachmentUrl = reasonAttachmentUrl;
- }
- }
|