|
|
@@ -3,300 +3,235 @@ package com.goafanti.common.model;
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class NewOrderDun {
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.id
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Integer id;
|
|
|
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.order_no
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private String orderNo;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.tid
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Integer tid;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.project_type
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Integer projectType;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.dun_type
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Integer dunType;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.wait_day
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Integer waitDay;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.effective_year
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Integer effectiveYear;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.aid
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private String aid;
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * This field was generated by MyBatis Generator.
|
|
|
- * This field corresponds to the database column new_order_dun.create_time
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- private Date createTime;
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.id
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.id
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Integer getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.id
|
|
|
- *
|
|
|
- * @param id the value for new_order_dun.id
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 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 new_order_dun.order_no
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.order_no
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public String getOrderNo() {
|
|
|
- return orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.order_no
|
|
|
- *
|
|
|
- * @param orderNo the value for new_order_dun.order_no
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setOrderNo(String orderNo) {
|
|
|
- this.orderNo = orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.tid
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.tid
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Integer getTid() {
|
|
|
- return tid;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.tid
|
|
|
- *
|
|
|
- * @param tid the value for new_order_dun.tid
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setTid(Integer tid) {
|
|
|
- this.tid = tid;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.project_type
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.project_type
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Integer getProjectType() {
|
|
|
- return projectType;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.project_type
|
|
|
- *
|
|
|
- * @param projectType the value for new_order_dun.project_type
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setProjectType(Integer projectType) {
|
|
|
- this.projectType = projectType;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.dun_type
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.dun_type
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Integer getDunType() {
|
|
|
- return dunType;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.dun_type
|
|
|
- *
|
|
|
- * @param dunType the value for new_order_dun.dun_type
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setDunType(Integer dunType) {
|
|
|
- this.dunType = dunType;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.wait_day
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.wait_day
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Integer getWaitDay() {
|
|
|
- return waitDay;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.wait_day
|
|
|
- *
|
|
|
- * @param waitDay the value for new_order_dun.wait_day
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setWaitDay(Integer waitDay) {
|
|
|
- this.waitDay = waitDay;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.effective_year
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.effective_year
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Integer getEffectiveYear() {
|
|
|
- return effectiveYear;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.effective_year
|
|
|
- *
|
|
|
- * @param effectiveYear the value for new_order_dun.effective_year
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setEffectiveYear(Integer effectiveYear) {
|
|
|
- this.effectiveYear = effectiveYear;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method returns the value of the database column new_order_dun.aid
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.aid
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public String getAid() {
|
|
|
- return aid;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.aid
|
|
|
- *
|
|
|
- * @param aid the value for new_order_dun.aid
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 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 new_order_dun.create_time
|
|
|
- *
|
|
|
- * @return the value of new_order_dun.create_time
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public Date getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator.
|
|
|
- * This method sets the value of the database column new_order_dun.create_time
|
|
|
- *
|
|
|
- * @param createTime the value for new_order_dun.create_time
|
|
|
- *
|
|
|
- * @mbg.generated Mon Dec 02 14:11:03 CST 2019
|
|
|
- */
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.id
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer id;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.order_no
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private String orderNo;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.tid
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer tid;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.project_type
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer projectType;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.dun_type
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer dunType;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.wait_day
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer waitDay;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.effective_year
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer effectiveYear;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.aid
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private String aid;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.status
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Integer status;
|
|
|
+ /**
|
|
|
+ * This field was generated by MyBatis Generator. This field corresponds to the database column new_order_dun.create_time
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.id
|
|
|
+ * @return the value of new_order_dun.id
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.id
|
|
|
+ * @param id the value for new_order_dun.id
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 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 new_order_dun.order_no
|
|
|
+ * @return the value of new_order_dun.order_no
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public String getOrderNo() {
|
|
|
+ return orderNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.order_no
|
|
|
+ * @param orderNo the value for new_order_dun.order_no
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setOrderNo(String orderNo) {
|
|
|
+ this.orderNo = orderNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.tid
|
|
|
+ * @return the value of new_order_dun.tid
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getTid() {
|
|
|
+ return tid;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.tid
|
|
|
+ * @param tid the value for new_order_dun.tid
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setTid(Integer tid) {
|
|
|
+ this.tid = tid;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.project_type
|
|
|
+ * @return the value of new_order_dun.project_type
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getProjectType() {
|
|
|
+ return projectType;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.project_type
|
|
|
+ * @param projectType the value for new_order_dun.project_type
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setProjectType(Integer projectType) {
|
|
|
+ this.projectType = projectType;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.dun_type
|
|
|
+ * @return the value of new_order_dun.dun_type
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getDunType() {
|
|
|
+ return dunType;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.dun_type
|
|
|
+ * @param dunType the value for new_order_dun.dun_type
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setDunType(Integer dunType) {
|
|
|
+ this.dunType = dunType;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.wait_day
|
|
|
+ * @return the value of new_order_dun.wait_day
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getWaitDay() {
|
|
|
+ return waitDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.wait_day
|
|
|
+ * @param waitDay the value for new_order_dun.wait_day
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setWaitDay(Integer waitDay) {
|
|
|
+ this.waitDay = waitDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.effective_year
|
|
|
+ * @return the value of new_order_dun.effective_year
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getEffectiveYear() {
|
|
|
+ return effectiveYear;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.effective_year
|
|
|
+ * @param effectiveYear the value for new_order_dun.effective_year
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setEffectiveYear(Integer effectiveYear) {
|
|
|
+ this.effectiveYear = effectiveYear;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.aid
|
|
|
+ * @return the value of new_order_dun.aid
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public String getAid() {
|
|
|
+ return aid;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.aid
|
|
|
+ * @param aid the value for new_order_dun.aid
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 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 new_order_dun.status
|
|
|
+ * @return the value of new_order_dun.status
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.status
|
|
|
+ * @param status the value for new_order_dun.status
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method returns the value of the database column new_order_dun.create_time
|
|
|
+ * @return the value of new_order_dun.create_time
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator. This method sets the value of the database column new_order_dun.create_time
|
|
|
+ * @param createTime the value for new_order_dun.create_time
|
|
|
+ * @mbg.generated Tue Dec 03 11:01:29 CST 2019
|
|
|
+ */
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
}
|