H5FollowBean.java
759 Bytes
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
package com.wd.foundation.bean.web;
import com.wd.foundation.bean.base.BaseBean;
/**
* h5关注bean
* @author baozhaoxin
* @version [V1.0.0, 2024/1/24]
* @since V1.0.0
*/
public class H5FollowBean extends BaseBean {
/**
* 相应的号主id
*/
private String creatorId;
/**
* 关注状态,相应的号主关注状态,1已关注,0 未关
*/
private String followStatus;
public String getCreatorId() {
return creatorId;
}
public void setCreatorId(String creatorId) {
this.creatorId = creatorId;
}
public String getFollowStatus() {
return followStatus;
}
public void setFollowStatus(String followStatus) {
this.followStatus = followStatus;
}
}