完善了订单接口

This commit is contained in:
chen-xin-zhi 2024-11-03 15:06:38 +08:00
parent fa25bd5031
commit 48cbe7722a

View File

@ -126,7 +126,7 @@ public class FileController {
if (fileSize > LIMIT) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "文件大小不能超过512K");
}
if (!Arrays.asList("jpeg", "jpg", "svg", "png", "webp").contains(fileSuffix)) {
if (!Arrays.asList("jpeg", "jpg", "svg", "png", "webp", "JPG").contains(fileSuffix)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "文件类型错误");
}
}