|
@@ -5,8 +5,10 @@ import com.ruoyi.common.core.domain.R;
|
|
|
import com.ruoyi.common.core.redis.RedisCache;
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
+import com.ruoyi.system.domain.UserAddress;
|
|
|
import com.ruoyi.system.domain.UserInfo;
|
|
|
import com.ruoyi.system.domain.vo.SmsResponseVo;
|
|
|
+import com.ruoyi.system.service.UserAddressService;
|
|
|
import com.ruoyi.system.service.UserInfoService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -27,9 +29,16 @@ public class UserLoginController {
|
|
|
|
|
|
@Autowired
|
|
|
private UserInfoService userInfoService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private UserAddressService userAddressService;
|
|
|
+
|
|
|
@Autowired
|
|
|
private RedisCache redisCache;
|
|
|
|
|
|
+ /**
|
|
|
+ * 登录接口
|
|
|
+ */
|
|
|
@PostMapping("/login")
|
|
|
public R<SmsResponseVo> sendSms(@RequestBody UserInfo param) {
|
|
|
if (StringUtils.isEmpty(param.getUserPhone()) || Pattern.matches("^1[3-9]\\d{9}$\n",param.getUserPhone())){
|
|
@@ -48,4 +57,18 @@ public class UserLoginController {
|
|
|
}
|
|
|
return R.ok();
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 上传用户地址
|
|
|
+ */
|
|
|
+ @PostMapping("/uploadAddress")
|
|
|
+ public R<SmsResponseVo> sendSms(@RequestBody UserAddress param) {
|
|
|
+ param.setCreateTime(DateUtils.getNowDate());
|
|
|
+ userAddressService.save(param);
|
|
|
+ return R.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|