文件上传https
This commit is contained in:
parent
f9ef696b1b
commit
2fc2f8330e
|
@ -14,7 +14,7 @@ public interface UserConstant {
|
||||||
/**
|
/**
|
||||||
* 用户默认头像
|
* 用户默认头像
|
||||||
*/
|
*/
|
||||||
String USER_DEFAULT_AVATAR = "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQbtEasUN-VCG211285566731.png";
|
String USER_DEFAULT_AVATAR = "feiyi%2Ftest%2F0%2FQbtEasUN-VCG211285566731.png";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户登录键
|
* 用户登录键
|
||||||
|
|
|
@ -18,6 +18,7 @@ import com.cultural.heritage.model.dto.clothes.ClothesAddRequest;
|
||||||
import com.cultural.heritage.model.dto.clothes.ClothesQueryRequest;
|
import com.cultural.heritage.model.dto.clothes.ClothesQueryRequest;
|
||||||
import com.cultural.heritage.model.dto.clothes.ClothesUpdateRequest;
|
import com.cultural.heritage.model.dto.clothes.ClothesUpdateRequest;
|
||||||
import com.cultural.heritage.model.entity.Clothes;
|
import com.cultural.heritage.model.entity.Clothes;
|
||||||
|
import com.cultural.heritage.model.vo.clothes.ClothesLabelVO;
|
||||||
import com.cultural.heritage.model.vo.clothes.ClothesVO;
|
import com.cultural.heritage.model.vo.clothes.ClothesVO;
|
||||||
import com.cultural.heritage.service.clothes.ClothesService;
|
import com.cultural.heritage.service.clothes.ClothesService;
|
||||||
import com.cultural.heritage.service.common.CommonService;
|
import com.cultural.heritage.service.common.CommonService;
|
||||||
|
@ -128,7 +129,7 @@ public class ClothesController {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据服装id查询服装信息
|
* 小程序端用户根据id查询服装
|
||||||
*/
|
*/
|
||||||
@PostMapping("/get/id")
|
@PostMapping("/get/id")
|
||||||
@Operation(summary = "小程序端用户根据id查询服装", description = "参数:服装id,权限:所有人,方法名:getClothesById")
|
@Operation(summary = "小程序端用户根据id查询服装", description = "参数:服装id,权限:所有人,方法名:getClothesById")
|
||||||
|
@ -139,6 +140,22 @@ public class ClothesController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 小程序端用户根据id查询服装(不包含富文本)
|
||||||
|
*/
|
||||||
|
@PostMapping("/get/label/id")
|
||||||
|
@Operation(summary = "小程序端用户根据id查询服装(不包含富文本)", description = "参数:服装id,权限:所有人,方法名:getClothesLabelById")
|
||||||
|
public BaseResponse<ClothesLabelVO> getClothesLabelById(@RequestBody CommonRequest commonRequest) {
|
||||||
|
if (commonRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||||
|
Long id = commonRequest.getId();
|
||||||
|
Clothes clothes = clothesService.getById(id);
|
||||||
|
ThrowUtils.throwIf(clothes == null, ErrorCode.OPERATION_ERROR, "服装不存在");
|
||||||
|
ClothesLabelVO clothesLabelVO = commonService.copyProperties(clothes, ClothesLabelVO.class);
|
||||||
|
return ResultUtils.success(clothesLabelVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Web端管理员分页查询服装
|
* Web端管理员分页查询服装
|
||||||
|
|
|
@ -185,7 +185,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
|
||||||
user.setUserAccount(userAccount);
|
user.setUserAccount(userAccount);
|
||||||
user.setUserPassword(userPassword);
|
user.setUserPassword(userPassword);
|
||||||
user.setMiniOpenId(openid);
|
user.setMiniOpenId(openid);
|
||||||
user.setUserName("非遗雅士");
|
user.setUserName("玲珑" + RandomUtil.randomString(8));
|
||||||
user.setUserRole("user");
|
user.setUserRole("user");
|
||||||
user.setPoints(10000);
|
user.setPoints(10000);
|
||||||
user.setUserAvatar(UserConstant.USER_DEFAULT_AVATAR);
|
user.setUserAvatar(UserConstant.USER_DEFAULT_AVATAR);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user