|
@@ -15,9 +15,11 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import java.util.HashMap;
|
|
|
+
|
|
|
/**
|
|
|
* 用户信息Controller
|
|
|
- *
|
|
|
+ *
|
|
|
* @author liming
|
|
|
* @date 2023-08-01
|
|
|
*/
|
|
@@ -35,9 +37,9 @@ public class UserInfoController extends BaseController {
|
|
|
*/
|
|
|
// @PreAuthorize("@ss.hasPermi('system:info:list')")
|
|
|
@PostMapping("/list")
|
|
|
- public R<IPage<UserInfo>> list(@RequestBody BaseParam param) {
|
|
|
+ public R<IPage<UserInfo>> list(@RequestBody BaseParam param) {
|
|
|
Page<UserInfo> page = new Page<>(param.getCurrent(), param.getSize());
|
|
|
- IPage<UserInfo> userInfoIPage = userInfoService.getUserInfoList(page,null);
|
|
|
+ IPage<UserInfo> userInfoIPage = userInfoService.getUserInfoList(page, null);
|
|
|
// IPage<UserInfo> userInfoIPage = userInfoService.page(new Page<UserInfo>().setCurrent(param.getCurrent()).setSize(param.getSize()),
|
|
|
// new LambdaQueryWrapper<UserInfo>().eq(UserInfo::getDelFlag,0));
|
|
|
|
|
@@ -56,5 +58,47 @@ public class UserInfoController extends BaseController {
|
|
|
return R.ok(userAddress);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取用户地址详情信息
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/distributed")
|
|
|
+ public R<HashMap<String, Integer>> distributed() {
|
|
|
+ HashMap<String, Integer> map = new HashMap<>();
|
|
|
+ map.put("北京市", 1000);
|
|
|
+ map.put("上海市", 2000);
|
|
|
+ map.put("天津市", 3000);
|
|
|
+ map.put("重庆市", 8000);
|
|
|
+ map.put("河北省", 2000);
|
|
|
+ map.put("山西省", 6000);
|
|
|
+ map.put("辽宁省", 4000);
|
|
|
+ map.put("吉林省", 2000);
|
|
|
+ map.put("黑龙江省", 3000);
|
|
|
+ map.put("浙江省", 4000);
|
|
|
+ map.put("福建省", 5000);
|
|
|
+ map.put("山东省", 6000);
|
|
|
+ map.put("河南省", 10000);
|
|
|
+ map.put("湖北省", 8000);
|
|
|
+ map.put("湖南省", 9000);
|
|
|
+ map.put("广东省", 10000);
|
|
|
+ map.put("海南省", 11000);
|
|
|
+ map.put("四川", 6000);
|
|
|
+ map.put("贵州", 6000);
|
|
|
+ map.put("云南", 6000);
|
|
|
+ map.put("江西省", 8000);
|
|
|
+ map.put("陕西省", 8000);
|
|
|
+ map.put("青海省", 8000);
|
|
|
+ map.put("甘肃省", 8000);
|
|
|
+ map.put("广西省", 8000);
|
|
|
+ map.put("新疆省", 8000);
|
|
|
+ map.put("内蒙古省", 9000);
|
|
|
+ map.put("西藏省", 6000);
|
|
|
+ map.put("台湾", 4000);
|
|
|
+ map.put("香港", 6666);
|
|
|
+ map.put("澳门", 6666);
|
|
|
+ map.put("安徽省", 7000);
|
|
|
+ map.put("江苏省省", 9000);
|
|
|
+ return R.ok(map);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|