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
@@ -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;
}