Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.ibeetl.admin.core.entity;
 
import com.ibeetl.admin.core.util.ValidateConfig;
import org.beetl.sql.core.annotatoin.AutoID;
import org.beetl.sql.core.annotatoin.InsertIgnore;
import org.beetl.sql.core.annotatoin.LogicDelete;
import org.beetl.sql.core.annotatoin.SeqID;
 
import javax.validation.constraints.NotNull;
 
 
/* 
* 订单投诉表
* gen by Spring Boot2 Admin 2019-12-25
*/
public class XzxOrderComplaint extends BaseEntity{
 
    @NotNull(message = "ID不能为空", groups =ValidateConfig.UPDATE.class)
    @SeqID(name = ORACLE_CORE_SEQ_NAME)
    @AutoID    
 
    private Long id ;
    
 
    private String orderId ;
    
    //投诉原因
 
    private String complaintReason ;
    
    //创建时间
 
    private String createTime ;
    
    //删除标记 0:未删除 1:删除
    /*逻辑删除标志*/
    @InsertIgnore
    @LogicDelete(value = 1)
 
    private Integer delFlag ;
    
    //订单处理标记 0:未处理,1:以处理,2:取消订单,3:重新派单
 
    private Integer afterSaleFlag ;
    
    //投诉图片,以逗号分割
 
    private String complainImg ;
    
    // 处理方式
 
    private String complaintPlan ;
    
    //投诉类型
 
    private Integer complaintType ;
    
    public XzxOrderComplaint(){
    }
 
    public Long getId(){
        return  id;
    }
    public void setId(Long id){
        this.id = id;
    }
 
    public String getOrderId(){
        return  orderId;
    }
    public void setOrderId(String orderId){
        this.orderId = orderId;
    }
 
    /**投诉原因
    *@return 
    */
    public String getComplaintReason(){
        return  complaintReason;
    }
    /**投诉原因
    *@param  complaintReason
    */
    public void setComplaintReason(String complaintReason){
        this.complaintReason = complaintReason;
    }
 
    /**创建时间
    *@return 
    */
    public String getCreateTime(){
        return  createTime;
    }
    /**创建时间
    *@param  createTime
    */
    public void setCreateTime(String createTime){
        this.createTime = createTime;
    }
 
    /**删除标记 0:未删除 1:删除
    *@return 
    */
    public Integer getDelFlag(){
        return  delFlag;
    }
    /**删除标记 0:未删除 1:删除
    *@param  delFlag
    */
    public void setDelFlag(Integer delFlag){
        this.delFlag = delFlag;
    }
 
    /**订单处理标记 0:未处理,1:以处理,2:取消订单,3:重新派单
    *@return 
    */
    public Integer getAfterSaleFlag(){
        return  afterSaleFlag;
    }
    /**订单处理标记 0:未处理,1:以处理,2:取消订单,3:重新派单
    *@param  afterSaleFlag
    */
    public void setAfterSaleFlag(Integer afterSaleFlag){
        this.afterSaleFlag = afterSaleFlag;
    }
 
    /**投诉图片,以逗号分割
    *@return 
    */
    public String getComplainImg(){
        return  complainImg;
    }
    /**投诉图片,以逗号分割
    *@param  complainImg
    */
    public void setComplainImg(String complainImg){
        this.complainImg = complainImg;
    }
 
    /** 处理方式
    *@return 
    */
    public String getComplaintPlan(){
        return  complaintPlan;
    }
    /** 处理方式
    *@param  complaintPlan
    */
    public void setComplaintPlan(String complaintPlan){
        this.complaintPlan = complaintPlan;
    }
 
    /**投诉类型
    *@return 
    */
    public Integer getComplaintType(){
        return  complaintType;
    }
    /**投诉类型
    *@param  complaintType
    */
    public void setComplaintType(Integer complaintType){
        this.complaintType = complaintType;
    }
 
 
}