1.优化
Showing
1 changed file
with
0 additions
and
3 deletions
... | @@ -40,17 +40,14 @@ public class UserWeixin extends AsyncMqModule implements Serializable { | ... | @@ -40,17 +40,14 @@ public class UserWeixin extends AsyncMqModule implements Serializable { |
40 | 40 | ||
41 | /** 微信unionid,针对开发者 */ | 41 | /** 微信unionid,针对开发者 */ |
42 | @Column(name = "unionid") | 42 | @Column(name = "unionid") |
43 | @NotNull(message = "unionid can't be null",groups = {CreateGroup.class}) | ||
44 | private String unionid; | 43 | private String unionid; |
45 | 44 | ||
46 | /** 微信appid */ | 45 | /** 微信appid */ |
47 | @Column(name = "appid") | 46 | @Column(name = "appid") |
48 | @NotNull(message = "appid can't be null",groups = {CreateGroup.class}) | ||
49 | private String appid; | 47 | private String appid; |
50 | 48 | ||
51 | /** 微信openid,针对微信app */ | 49 | /** 微信openid,针对微信app */ |
52 | @Column(name = "openid") | 50 | @Column(name = "openid") |
53 | @NotNull(message = "openid can't be null",groups = {CreateGroup.class}) | ||
54 | private String openid; | 51 | private String openid; |
55 | 52 | ||
56 | /** 关注状态 0 -未关注 1 - 已关注 */ | 53 | /** 关注状态 0 -未关注 1 - 已关注 */ | ... | ... |
-
Please register or sign in to post a comment