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 22
33import com .google .gson .annotations .SerializedName ;
44import lombok .Data ;
5+ import lombok .EqualsAndHashCode ;
56import lombok .Getter ;
67import lombok .Setter ;
78import me .chanjar .weixin .common .util .json .WxGsonBuilder ;
1415 * @author huangxiaoming
1516 */
1617@ Data
18+ @ EqualsAndHashCode (callSuper = true )
1719public class WxCpTpAdmin extends WxCpBaseResp {
18-
1920 private static final long serialVersionUID = -5028321625140879571L ;
2021
2122 @ SerializedName ("admin" )
Original file line number Diff line number Diff line change 22
33import com .google .gson .annotations .SerializedName ;
44import lombok .Data ;
5+ import lombok .EqualsAndHashCode ;
56import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
67
78/**
89 *
910 * @author huangxiaoming
1011 */
1112@ Data
13+ @ EqualsAndHashCode (callSuper = true )
1214public class WxCpTpUserDetail extends WxCpBaseResp {
13-
1415 private static final long serialVersionUID = -5028321625140879571L ;
1516 /**
1617 * 用户所属企业的corpid
Original file line number Diff line number Diff line change 22
33import com .google .gson .annotations .SerializedName ;
44import lombok .Data ;
5+ import lombok .EqualsAndHashCode ;
56import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
67
78/**
89 * @author huangxiaoming
910 */
11+
1012@ Data
13+ @ EqualsAndHashCode (callSuper = true )
1114public class WxCpTpUserInfo extends WxCpBaseResp {
1215
1316 private static final long serialVersionUID = -5028321625140879571L ;
Original file line number Diff line number Diff line change 22
33import com .google .gson .annotations .SerializedName ;
44import lombok .Data ;
5+ import lombok .EqualsAndHashCode ;
56import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
67import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
78
1213 * @date 2021-10-29
1314 */
1415@ Data
16+ @ EqualsAndHashCode (callSuper = true )
1517public class WxCpAddMomentResult extends WxCpBaseResp {
18+ private static final long serialVersionUID = -7212260280504857210L ;
1619
1720 @ SerializedName ("jobid" )
1821 private String jobId ;
Original file line number Diff line number Diff line change 22
33import com .google .gson .annotations .SerializedName ;
44import lombok .Data ;
5+ import lombok .EqualsAndHashCode ;
56import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
67import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
78
89/**
910 * 「联系我」方式 处理结果
1011 */
1112@ Data
13+ @ EqualsAndHashCode (callSuper = true )
1214public class WxCpContactWayResult extends WxCpBaseResp {
15+ private static final long serialVersionUID = -2612867517869192015L ;
1316 @ SerializedName ("config_id" )
1417 private String configId ;
1518
Original file line number Diff line number Diff line change 33import com .google .gson .annotations .SerializedName ;
44import java .util .List ;
55import lombok .Data ;
6+ import lombok .EqualsAndHashCode ;
67import lombok .Getter ;
78import lombok .Setter ;
89import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
1516 * @date 2021-10-29
1617 */
1718@ Data
19+ @ EqualsAndHashCode (callSuper = true )
1820public class WxCpGetMomentComments extends WxCpBaseResp {
21+ private static final long serialVersionUID = -9056664072546234965L ;
1922 @ SerializedName ("comment_list" )
2023 private List <CommentLikeItem > commentList ;
2124 @ SerializedName ("like_list" )
Original file line number Diff line number Diff line change 11package me .chanjar .weixin .cp .bean .external ;
22
33import com .google .gson .annotations .SerializedName ;
4- import java .util .List ;
54import lombok .Data ;
5+ import lombok .EqualsAndHashCode ;
66import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
77import me .chanjar .weixin .cp .bean .external .moment .CustomerItem ;
88import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
99
10+ import java .util .List ;
11+
1012/**
1113 * 企业发表内容到客户的朋友圈 获取客户朋友圈发表时选择的可见范围
1214 *
1315 * @author leiin
1416 * @date 2021-10-29
1517 */
1618@ Data
19+ @ EqualsAndHashCode (callSuper = true )
1720public class WxCpGetMomentCustomerList extends WxCpBaseResp {
21+ private static final long serialVersionUID = -8792120670063917097L ;
22+
1823 @ SerializedName ("next_cursor" )
1924 private String nextCursor ;
2025 @ SerializedName ("customer_list" )
Original file line number Diff line number Diff line change 33import com .google .gson .annotations .SerializedName ;
44import java .util .List ;
55import lombok .Data ;
6+ import lombok .EqualsAndHashCode ;
67import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
78import me .chanjar .weixin .cp .bean .external .moment .MomentInfo ;
89import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
1415 * @date 2021-10-29
1516 */
1617@ Data
18+ @ EqualsAndHashCode (callSuper = true )
1719public class WxCpGetMomentList extends WxCpBaseResp {
20+ private static final long serialVersionUID = 106159971765109008L ;
1821 @ SerializedName ("next_cursor" )
1922 private String nextCursor ;
2023 @ SerializedName ("moment_list" )
Original file line number Diff line number Diff line change 33import com .google .gson .annotations .SerializedName ;
44import java .util .List ;
55import lombok .Data ;
6+ import lombok .EqualsAndHashCode ;
67import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
78import me .chanjar .weixin .cp .bean .external .moment .CustomerItem ;
89import me .chanjar .weixin .cp .util .json .WxCpGsonBuilder ;
1415 * @date 2021-10-29
1516 */
1617@ Data
18+ @ EqualsAndHashCode (callSuper = true )
1719public class WxCpGetMomentSendResult extends WxCpBaseResp {
20+ private static final long serialVersionUID = -5782811995184523379L ;
1821 @ SerializedName ("next_cursor" )
1922 private String nextCursor ;
2023 @ SerializedName ("customer_list" )
Original file line number Diff line number Diff line change 33import com .google .gson .annotations .SerializedName ;
44import java .util .List ;
55import lombok .Data ;
6+ import lombok .EqualsAndHashCode ;
67import lombok .Getter ;
78import lombok .Setter ;
89import me .chanjar .weixin .cp .bean .WxCpBaseResp ;
1516 * @date 2021-10-29
1617 */
1718@ Data
19+ @ EqualsAndHashCode (callSuper = true )
1820public class WxCpGetMomentTask extends WxCpBaseResp {
21+ private static final long serialVersionUID = 5621905029624794129L ;
1922 @ SerializedName ("next_cursor" )
2023 private String nextCursor ;
2124
You can’t perform that action at this time.
0 commit comments