文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-23 19:13:23 +08:00
parent f9ef696b1b
commit 2fc2f8330e
3 changed files with 20 additions and 3 deletions

View File

@ -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";
/**
* 用户登录键

View File

@ -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.ClothesUpdateRequest;
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.service.clothes.ClothesService;
import com.cultural.heritage.service.common.CommonService;
@ -128,7 +129,7 @@ public class ClothesController {
/**
* 根据服装id查询服装信息
* 小程序端用户根据id查询服装
*/
@PostMapping("/get/id")
@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端管理员分页查询服装

View File

@ -185,7 +185,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
user.setUserAccount(userAccount);
user.setUserPassword(userPassword);
user.setMiniOpenId(openid);
user.setUserName("非遗雅士");
user.setUserName("玲珑" + RandomUtil.randomString(8));
user.setUserRole("user");
user.setPoints(10000);
user.setUserAvatar(UserConstant.USER_DEFAULT_AVATAR);