1、新增贴皮管理增删改、上传图片、分页/单个查询接口;2、整理对应参数校验国际化;

This commit is contained in:
gaoqr
2026-01-05 11:40:20 +08:00
parent f46a33bddb
commit 6ffb810e29
29 changed files with 1050 additions and 31 deletions
@@ -28,6 +28,8 @@ public @interface InEnum {
String message() default "inEnum.message";
String fieldName() default "";
Class<?>[] groups() default {};
Class<? extends Payload>[] payload() default {};
@@ -18,8 +18,11 @@ public class InEnumValidator implements ConstraintValidator<InEnum, Integer> {
private List<Integer> values;
private String fieldName;
@Override
public void initialize(InEnum annotation) {
fieldName = annotation.fieldName();
IntArrayValuable[] values = annotation.value().getEnumConstants();
if (values.length == 0) {
this.values = Collections.emptyList();
@@ -44,7 +47,7 @@ public class InEnumValidator implements ConstraintValidator<InEnum, Integer> {
// 校验不通过,自定义提示语句(因为,注解上的 value 是枚举类,无法获得枚举类的实际值)
context.disableDefaultConstraintViolation(); // 禁用默认的 message 的值
context.buildConstraintViolationWithTemplate(defaultConstraintMessageTemplate).addConstraintViolation(); // 重新添加错误提示语句
context.buildConstraintViolationWithTemplate(fieldName + defaultConstraintMessageTemplate).addConstraintViolation(); // 重新添加错误提示语句
return false;
}
}
@@ -0,0 +1,22 @@
package com.cf.imes.framework.excel.core.enums;
import com.cf.imes.framework.excel.core.convert.BaseBoolValEnum;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* 是否枚举
*
* @author Gqr
* @since 2025/9/25 15:54
*/
@Getter
@AllArgsConstructor
public enum WhetherEnum implements BaseBoolValEnum {
TRUE(true, "whether.yes"),
FALSE(false, "whether.no");
private final Boolean code;
private final String desc;
}
@@ -0,0 +1,34 @@
package com.cf.imes.framework.excel.core.enums;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
* {@link WhetherEnum} 的单元测试
*/
class WhetherEnumTest {
@Test
void testEnumValues() {
// 验证枚举值 TRUE
assertEquals(true, WhetherEnum.TRUE.getCode());
assertEquals("whether.yes", WhetherEnum.TRUE.getDesc());
// 验证枚举值 FALSE
assertEquals(false, WhetherEnum.FALSE.getCode());
assertEquals("whether.no", WhetherEnum.FALSE.getDesc());
}
@Test
void testEnumSize() {
// 验证枚举值的数量
assertEquals(2, WhetherEnum.values().length);
}
@Test
void testGetCode() {
// 测试 getCode 方法
assertTrue(WhetherEnum.TRUE.getCode());
assertFalse(WhetherEnum.FALSE.getCode());
}
}