935090232@qq.com
2021-03-05 b4da2725da57633daff22eed89f09d6e33f18560
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package com.matrix.system.hive.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
/**
 * @description 积分流水
 * @author 
 * @date 2020-05-05 23:09
 */
public class SysSourceFlow  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 会员id
     */
    private Long  vipId;
            
    
    /**
     * 分值
     */
    private Long  source;
            
    
    /**
     * 操作员id
     */
    private Long  staffId;
            
    
    /**
     * 操作员名称
     */
    private String  staffName;
            
    
    /**
     * 操作备注
     */
    private String  remark;
            
    
    /**
     * 订单id
     */
    private Long  orderId;
            
    
    /**
     * 扩展字段1
     */
    private String  t1;
            
    
    /**
     * 扩展字段2
     */
    private String  t2;
            
    
    /**
     * 扩展字段3
     */
    private String  t3;
            
    
    /**
     * 扩展字段4
     */
    private String  t4;
            
    
 
    public Integer getId() {
        return id;
    }
       
       public SysSourceFlow setId(Integer id) {
        this.id=id;
        return this;
    }
       
 
    public Long getVipId() {
        return vipId;
    }
       
       public SysSourceFlow setVipId(Long vipId) {
        this.vipId=vipId;
        return this;
    }
       
 
    public Long getSource() {
        return source;
    }
       
       public SysSourceFlow setSource(Long source) {
        this.source=source;
        return this;
    }
       
 
    public Long getStaffId() {
        return staffId;
    }
       
       public SysSourceFlow setStaffId(Long staffId) {
        this.staffId=staffId;
        return this;
    }
       
 
    public String getStaffName() {
        return staffName;
    }
       
       public SysSourceFlow setStaffName(String staffName) {
        this.staffName=staffName;
        return this;
    }
       
 
    public String getRemark() {
        return remark;
    }
       
       public SysSourceFlow setRemark(String remark) {
        this.remark=remark;
        return this;
    }
       
 
    public Long getOrderId() {
        return orderId;
    }
       
       public SysSourceFlow setOrderId(Long orderId) {
        this.orderId=orderId;
        return this;
    }
       
 
    public String getT1() {
        return t1;
    }
       
       public SysSourceFlow setT1(String t1) {
        this.t1=t1;
        return this;
    }
       
 
    public String getT2() {
        return t2;
    }
       
       public SysSourceFlow setT2(String t2) {
        this.t2=t2;
        return this;
    }
       
 
    public String getT3() {
        return t3;
    }
       
       public SysSourceFlow setT3(String t3) {
        this.t3=t3;
        return this;
    }
       
 
    public String getT4() {
        return t4;
    }
       
       public SysSourceFlow setT4(String t4) {
        this.t4=t4;
        return this;
    }
       
 
 
  
}