kimi
2020-11-27 75c32d6d697a550400d0b4eec95b8570d83b726f
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package com.highdatas.srs.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-01-15
 */
@TableName("scheme")
public class Scheme extends Model<Scheme> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String name;
    private String code;
    private String type;
    @TableField("lead_user_id")
    private String leadUserId;
 
    @TableField("reseach_type")
    private String reseachType;
    @TableField("order_type")
    private String orderType;
 
    private String desc;
    private BigDecimal budget;
    @TableField("pay_money")
    private BigDecimal payMoney;
 
    @TableField("start_time")
    private Date startTime;
 
    @TableField("user_id")
    private String userId;
    @TableField("charge_id")
    private String chargeId;
 
    @TableField("end_time")
    private Date endTime;
 
    @TableField("create_time")
    private Date createTime;
 
    private String status;
    private String attachment;
 
    private  transient  List<List<String>> leadUserList;
 
 
    public BigDecimal getPayMoney() {
        return payMoney;
    }
 
    public Scheme setPayMoney(BigDecimal payMoney) {
        this.payMoney = payMoney;
        return this;
    }
 
    public String getType() {
        return type;
    }
 
    public Scheme setType(String type) {
        this.type = type;
        return this;
    }
 
    public String getOrderType() {
        return orderType;
    }
 
    public Scheme setOrderType(String orderType) {
        this.orderType = orderType;
        return this;
    }
 
    public String getChargeId() {
        return chargeId;
    }
 
    public String getCode() {
        return code;
    }
 
    public Scheme setCode(String code) {
        this.code = code;
        return this;
    }
 
    public Scheme setChargeId(String chargeId) {
        this.chargeId = chargeId;
        return this;
    }
 
    public BigDecimal getBudget() {
        return budget;
    }
 
    public Scheme setBudget(BigDecimal budget) {
        this.budget = budget;
        return this;
    }
 
    public String getAttachment() {
        return attachment;
    }
 
    public void setAttachment(String attachment) {
        this.attachment = attachment;
    }
 
 
    public List<List<String>> getLeadUserList() {
        return leadUserList;
    }
 
    public void setLeadUserList(List<List<String>> leadUserList) {
        this.leadUserList = leadUserList;
    }
 
    public String getLeadUserId() {
        return leadUserId;
    }
 
    public Scheme setLeadUserId(String leadUserId) {
        this.leadUserId = leadUserId;
        return this;
    }
 
    public String getStatus() {
        return status;
    }
 
    public Scheme setStatus(String status) {
        this.status = status;
        return this;
    }
 
    public String getId() {
        return id;
    }
 
    public Scheme setId(String id) {
        this.id = id;
        return this;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public Scheme setUserId(String userId) {
        this.userId = userId;
        return this;
    }
 
    public String getName() {
        return name;
    }
 
    public Scheme setName(String name) {
        this.name = name;
        return this;
    }
    public String getReseachType() {
        return reseachType;
    }
 
    public Scheme setReseachType(String reseachType) {
        this.reseachType = reseachType;
        return this;
    }
    public String getDesc() {
        return desc;
    }
 
    public Scheme setDesc(String desp) {
        this.desc = desp;
        return this;
    }
    public Date getStartTime() {
        return startTime;
    }
 
    public Scheme setStartTime(Date startTime) {
        this.startTime = startTime;
        return this;
    }
    public Date getEndTime() {
        return endTime;
    }
 
    public Scheme setEndTime(Date endTime) {
        this.endTime = endTime;
        return this;
    }
    public Date getCreateTime() {
        return createTime;
    }
 
    public Scheme setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "Scheme{" +
        "id=" + id +
        ", name=" + name +
        ", reseachType=" + reseachType +
        ", desp=" + desc +
        ", startTime=" + startTime +
        ", endTime=" + endTime +
        ", createTime=" + createTime +
        "}";
    }
}