RationNewFundInfo.java
2.98 KB
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
package com.cjs.cms.model.ration;
import java.util.Date;
import com.cjs.cms.model.BaseInfo;
/**
* 新品配售资金调整记录
*
* @author tongyufu
*
*/
public class RationNewFundInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private Integer id;
private String businessId; //相关业务主键
private String businessType; //相关业务类型
private String userId;
private Double fund; //调整资金金额
private String fundType; //调整类型
private String fundStatus; //调整结果(0:失败;1:成功)
private String remark; //备注
private String serviceId; //接口编号
private String request; //接口请求参数
private String response;
private Date createAt; //创建时间
private String createBy; //创建人
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getBusinessId() {
return businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public String getBusinessType() {
return businessType;
}
public void setBusinessType(String businessType) {
this.businessType = businessType;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Double getFund() {
return fund;
}
public void setFund(Double fund) {
this.fund = fund;
}
public String getFundType() {
return fundType;
}
public void setFundType(String fundType) {
this.fundType = fundType;
}
public String getFundStatus() {
return fundStatus;
}
public void setFundStatus(String fundStatus) {
this.fundStatus = fundStatus;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getServiceId() {
return serviceId;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
public String getResponse() {
return response;
}
public void setResponse(String response) {
this.response = response;
}
public String getRequest() {
return request;
}
public void setRequest(String request) {
this.request = request;
}
public Date getCreateAt() {
return createAt;
}
public void setCreateAt(Date createAt) {
this.createAt = createAt;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
}