File tree Expand file tree Collapse file tree 13 files changed +40
-3
lines changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean
weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/ma Expand file tree Collapse file tree 13 files changed +40
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
4
import lombok .Data ;
5
+ import lombok .EqualsAndHashCode ;
5
6
import lombok .Getter ;
6
7
import lombok .Setter ;
7
8
import me .chanjar .weixin .common .util .json .WxGsonBuilder ;
14
15
* @author huangxiaoming
15
16
*/
16
17
@ Data
18
+ @ EqualsAndHashCode (callSuper = true )
17
19
public class WxCpTpAdmin extends WxCpBaseResp {
18
-
19
20
private static final long serialVersionUID = -5028321625140879571L ;
20
21
21
22
@ SerializedName ("admin" )
Original file line number Diff line number Diff line change 2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
4
import lombok .Data ;
5
+ import lombok .EqualsAndHashCode ;
5
6
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
6
7
7
8
/**
8
9
*
9
10
* @author huangxiaoming
10
11
*/
11
12
@ Data
13
+ @ EqualsAndHashCode (callSuper = true )
12
14
public class WxCpTpUserDetail extends WxCpBaseResp {
13
-
14
15
private static final long serialVersionUID = -5028321625140879571L ;
15
16
/**
16
17
* 用户所属企业的corpid
Original file line number Diff line number Diff line change 2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
4
import lombok .Data ;
5
+ import lombok .EqualsAndHashCode ;
5
6
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
6
7
7
8
/**
8
9
* @author huangxiaoming
9
10
*/
11
+
10
12
@ Data
13
+ @ EqualsAndHashCode (callSuper = true )
11
14
public class WxCpTpUserInfo extends WxCpBaseResp {
12
15
13
16
private static final long serialVersionUID = -5028321625140879571L ;
Original file line number Diff line number Diff line change 2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
4
import lombok .Data ;
5
+ import lombok .EqualsAndHashCode ;
5
6
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
6
7
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
7
8
12
13
* @date 2021-10-29
13
14
*/
14
15
@ Data
16
+ @ EqualsAndHashCode (callSuper = true )
15
17
public class WxCpAddMomentResult extends WxCpBaseResp {
18
+ private static final long serialVersionUID = -7212260280504857210L ;
16
19
17
20
@ SerializedName ("jobid" )
18
21
private String jobId ;
Original file line number Diff line number Diff line change 2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
4
import lombok .Data ;
5
+ import lombok .EqualsAndHashCode ;
5
6
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
6
7
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
7
8
8
9
/**
9
10
* 「联系我」方式 处理结果
10
11
*/
11
12
@ Data
13
+ @ EqualsAndHashCode (callSuper = true )
12
14
public class WxCpContactWayResult extends WxCpBaseResp {
15
+ private static final long serialVersionUID = -2612867517869192015L ;
13
16
@ SerializedName ("config_id" )
14
17
private String configId ;
15
18
Original file line number Diff line number Diff line change 3
3
import com .google .gson .annotations .SerializedName ;
4
4
import java .util .List ;
5
5
import lombok .Data ;
6
+ import lombok .EqualsAndHashCode ;
6
7
import lombok .Getter ;
7
8
import lombok .Setter ;
8
9
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
15
16
* @date 2021-10-29
16
17
*/
17
18
@ Data
19
+ @ EqualsAndHashCode (callSuper = true )
18
20
public class WxCpGetMomentComments extends WxCpBaseResp {
21
+ private static final long serialVersionUID = -9056664072546234965L ;
19
22
@ SerializedName ("comment_list" )
20
23
private List <CommentLikeItem > commentList ;
21
24
@ SerializedName ("like_list" )
Original file line number Diff line number Diff line change 1
1
package me .chanjar .weixin .cp .bean .external ;
2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
- import java .util .List ;
5
4
import lombok .Data ;
5
+ import lombok .EqualsAndHashCode ;
6
6
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
7
7
import me .chanjar .weixin .cp .bean .external .moment .CustomerItem ;
8
8
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
9
9
10
+ import java .util .List ;
11
+
10
12
/**
11
13
* 企业发表内容到客户的朋友圈 获取客户朋友圈发表时选择的可见范围
12
14
*
13
15
* @author leiin
14
16
* @date 2021-10-29
15
17
*/
16
18
@ Data
19
+ @ EqualsAndHashCode (callSuper = true )
17
20
public class WxCpGetMomentCustomerList extends WxCpBaseResp {
21
+ private static final long serialVersionUID = -8792120670063917097L ;
22
+
18
23
@ SerializedName ("next_cursor" )
19
24
private String nextCursor ;
20
25
@ SerializedName ("customer_list" )
Original file line number Diff line number Diff line change 3
3
import com .google .gson .annotations .SerializedName ;
4
4
import java .util .List ;
5
5
import lombok .Data ;
6
+ import lombok .EqualsAndHashCode ;
6
7
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
7
8
import me .chanjar .weixin .cp .bean .external .moment .MomentInfo ;
8
9
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
14
15
* @date 2021-10-29
15
16
*/
16
17
@ Data
18
+ @ EqualsAndHashCode (callSuper = true )
17
19
public class WxCpGetMomentList extends WxCpBaseResp {
20
+ private static final long serialVersionUID = 106159971765109008L ;
18
21
@ SerializedName ("next_cursor" )
19
22
private String nextCursor ;
20
23
@ SerializedName ("moment_list" )
Original file line number Diff line number Diff line change 3
3
import com .google .gson .annotations .SerializedName ;
4
4
import java .util .List ;
5
5
import lombok .Data ;
6
+ import lombok .EqualsAndHashCode ;
6
7
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
7
8
import me .chanjar .weixin .cp .bean .external .moment .CustomerItem ;
8
9
import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
14
15
* @date 2021-10-29
15
16
*/
16
17
@ Data
18
+ @ EqualsAndHashCode (callSuper = true )
17
19
public class WxCpGetMomentSendResult extends WxCpBaseResp {
20
+ private static final long serialVersionUID = -5782811995184523379L ;
18
21
@ SerializedName ("next_cursor" )
19
22
private String nextCursor ;
20
23
@ SerializedName ("customer_list" )
Original file line number Diff line number Diff line change 3
3
import com .google .gson .annotations .SerializedName ;
4
4
import java .util .List ;
5
5
import lombok .Data ;
6
+ import lombok .EqualsAndHashCode ;
6
7
import lombok .Getter ;
7
8
import lombok .Setter ;
8
9
import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
15
16
* @date 2021-10-29
16
17
*/
17
18
@ Data
19
+ @ EqualsAndHashCode (callSuper = true )
18
20
public class WxCpGetMomentTask extends WxCpBaseResp {
21
+ private static final long serialVersionUID = 5621905029624794129L ;
19
22
@ SerializedName ("next_cursor" )
20
23
private String nextCursor ;
21
24
You can’t perform that action at this time.
0 commit comments