BusinessNoticeInfo.java
2.3 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
package com.cjs.cms.model.user;
import com.cjs.cms.model.BaseInfo;
/**
* 鉴定结果通知信息
* @author kongmingke
*
*/
public class BusinessNoticeInfo extends BaseInfo {
/**
*
*/
private static final long serialVersionUID = 1L;
private Integer id; //自增主键( hs_asset.SEQ_BUSINESS_NOTICE_ID)
private String businessKey; //业务主键(托管:apply_no,资金:hs_asset.fundjour.postion_str)
private String businessType; //业务类型 (10:托管鉴定结果,11:充值,12:提现)
private Integer noticeDate; //通知日期
private Integer noticeTime; //通知时间
private String noticeType; //通知方式(0:微信,1:短信)
private String noticeStatus; //通知发送状态(0:失败,1:成功)
private String noticeContent; //通知内容
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getBusinessKey() {
return businessKey;
}
public void setBusinessKey(String businessKey) {
this.businessKey = businessKey;
}
public String getBusinessType() {
return businessType;
}
public void setBusinessType(String businessType) {
this.businessType = businessType;
}
public Integer getNoticeDate() {
return noticeDate;
}
public void setNoticeDate(Integer noticeDate) {
this.noticeDate = noticeDate;
}
public Integer getNoticeTime() {
return noticeTime;
}
public void setNoticeTime(Integer noticeTime) {
this.noticeTime = noticeTime;
}
public String getNoticeType() {
return noticeType;
}
public void setNoticeType(String noticeType) {
this.noticeType = noticeType;
}
public String getNoticeStatus() {
return noticeStatus;
}
public void setNoticeStatus(String noticeStatus) {
this.noticeStatus = noticeStatus;
}
public String getNoticeContent() {
return noticeContent;
}
public void setNoticeContent(String noticeContent) {
this.noticeContent = noticeContent;
}
}