File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/kefu/request Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
package me .chanjar .weixin .mp .bean .kefu .request ;
2
2
3
+ import java .io .Serializable ;
4
+
5
+ import org .apache .commons .lang3 .builder .ToStringBuilder ;
6
+
3
7
import com .google .gson .annotations .SerializedName ;
8
+ import lombok .AllArgsConstructor ;
4
9
import lombok .Builder ;
5
10
import lombok .Data ;
6
11
import me .chanjar .weixin .mp .util .json .WxMpGsonBuilder ;
7
- import org .apache .commons .lang3 .builder .ToStringBuilder ;
8
-
9
- import java .io .Serializable ;
10
12
11
13
@ Data
12
14
@ Builder
15
+ @ AllArgsConstructor
13
16
public class WxMpKfAccountRequest implements Serializable {
14
17
private static final long serialVersionUID = -5451863610674856927L ;
15
18
16
19
/**
17
- * kf_account 完整客服账号,格式为:账号前缀@公众号微信号
20
+ * kf_account.
21
+ * 完整客服账号,格式为:账号前缀@公众号微信号
18
22
*/
19
23
@ SerializedName ("kf_account" )
20
24
private String kfAccount ;
21
25
22
26
/**
23
- * nickname 客服昵称,最长6个汉字或12个英文字符
27
+ * nickname.
28
+ * 客服昵称,最长6个汉字或12个英文字符
24
29
*/
25
30
@ SerializedName ("nickname" )
26
31
private String nickName ;
27
32
28
33
/**
29
- * invite_wx 接收绑定邀请的客服微信号
34
+ * invite_wx.
35
+ * 接收绑定邀请的客服微信号
30
36
*/
31
37
@ SerializedName ("invite_wx" )
32
38
private String inviteWx ;
You can’t perform that action at this time.
0 commit comments