|
@@ -19,6 +19,7 @@ import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.Map;
|
|
@@ -114,6 +115,8 @@ public class AppUserInfoController {
|
|
|
appUserInfo.setSexFlag(request.getSexFlag());
|
|
|
}
|
|
|
|
|
|
+ customerManage.setLiters(new BigDecimal(0));
|
|
|
+ customerManage.setAmt(new BigDecimal(0));
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("openId", openId); //注册用户openId
|
|
|
//params.put("token", token); //用户登录凭证
|