NoticeWechatDto.java
2.1 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
package com.java110.dto.notice;
import java.io.Serializable;
public class NoticeWechatDto implements Serializable {
private String communityId;
private String openId;
private String title;
private String notifyUserName;
private String url;
public NoticeWechatDto() {
}
/**
* 通知实体
* "流程名称", "发起时间", "发起人"
*
* @param communityId 项目
* @param openId 通知人
* @param title 流程名称
* @param notifyUserName 发起人
*/
public NoticeWechatDto(String communityId, String openId, String title, String notifyUserName) {
this.communityId = communityId;
this.openId = openId;
this.title = title;
this.notifyUserName = notifyUserName;
}
/**
* 通知实体
* "流程名称", "发起时间", "发起人"
*
* @param communityId 项目
* @param openId 通知人
* @param title 流程名称
* @param notifyUserName 发起人
* @param url 打开地址
*/
public NoticeWechatDto(String communityId, String openId, String title, String notifyUserName, String url) {
this.communityId = communityId;
this.openId = openId;
this.title = title;
this.notifyUserName = notifyUserName;
this.url = url;
}
public String getCommunityId() {
return communityId;
}
public void setCommunityId(String communityId) {
this.communityId = communityId;
}
public String getOpenId() {
return openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getNotifyUserName() {
return notifyUserName;
}
public void setNotifyUserName(String notifyUserName) {
this.notifyUserName = notifyUserName;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}