he2802 před 4 roky
rodič
revize
c80dd5f2a8

+ 1 - 1
zhongzheng-framework/src/main/java/com/zhongzheng/framework/web/service/WxLoginService.java

@@ -201,7 +201,7 @@ public class WxLoginService
         String unionId = String.valueOf(jsonObject1.get("unionid"));
         User user = iUserService.queryByUnionId(unionId);
         if(user==null){
-            throw new CustomException(access_token+"我"+openId+"您尚未注册,请前往小程序注册"+userInfoResultString);
+            throw new CustomException("您尚未注册,请前往小程序注册");
         }
         if(!Validator.isNotNull(user.getGzhOpenId())){
             user.setGzhOpenId(openId);

+ 4 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/user/vo/UserVo.java

@@ -149,6 +149,10 @@ public class UserVo {
 	@Excel(name = "头像")
 	@ApiModelProperty("头像")
 	private String avatar;
+	/** 余额 */
+	@Excel(name = "余额")
+	@ApiModelProperty("余额")
+	private String money;
 
 	public void setNull(){
 		this.setOpenId(null);