Commit b730db38 b730db383667b654ce2dc16e6d7174726e516b25 by xianghan

1.优化

1 parent d3407e25
...@@ -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 - 已关注 */
......