EsPutEntrustDataInfo.java
1.41 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
package com.cjs.cms.model.report;
import java.util.Date;
import com.cjs.cms.model.BaseInfo;
/**
* 向ElasticSearch添加成交数据记录
*
* @author tongyufu
*
*/
public class EsPutEntrustDataInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private Integer id;
private Integer putDate;
private Integer successAmount;
private Integer failAmount;
private Integer lastId;
private Date createAt;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getPutDate() {
return putDate;
}
public void setPutDate(Integer putDate) {
this.putDate = putDate;
}
public Integer getSuccessAmount() {
return successAmount;
}
public void setSuccessAmount(Integer successAmount) {
this.successAmount = successAmount;
}
public Integer getFailAmount() {
return failAmount;
}
public void setFailAmount(Integer failAmount) {
this.failAmount = failAmount;
}
public Integer getLastId() {
return lastId;
}
public void setLastId(Integer lastId) {
this.lastId = lastId;
}
public Date getCreateAt() {
return createAt;
}
public void setCreateAt(Date createAt) {
this.createAt = createAt;
}
}