update 重构 修改框架内不正常命名与规范是和否的状态

This commit is contained in:
疯狂的狮子Li
2026-03-18 10:39:06 +08:00
parent 7bbbcb2a1e
commit b214817d0b
33 changed files with 685 additions and 682 deletions

View File

@@ -30,12 +30,12 @@ public interface SystemConstants {
/**
* 是否菜单外链(是)
*/
String YES_FRAME = "0";
String YES_FRAME = "Y";
/**
* 是否菜单外链(否)
*/
String NO_FRAME = "1";
String NO_FRAME = "N";
/**
* 菜单类型(目录)

View File

@@ -19,7 +19,7 @@ import java.lang.annotation.Target;
public @interface DictPattern {
/**
* 字典类型,如 "sys_user_sex"
* 字典类型,如 "sys_user_gender"
*/
String dictType();

View File

@@ -15,7 +15,7 @@ import java.lang.annotation.*;
public @interface ExcelDictFormat {
/**
* 如果是字典类型请设置字典的type值 (如: sys_user_sex)
* 如果是字典类型请设置字典的type值 (如: sys_user_gender)
*/
String dictType() default "";

View File

@@ -447,7 +447,7 @@ public class OssClient {
*/
public String getDomain() {
// 从配置中获取域名、终端点、是否使用 HTTPS 等信息
String domain = properties.getDomain();
String domain = properties.getDomainUrl();
String endpoint = properties.getEndpoint();
String header = getIsHttps();
@@ -485,7 +485,7 @@ public class OssClient {
* @return 文件路径
*/
public String getUrl() {
String domain = properties.getDomain();
String domain = properties.getDomainUrl();
String endpoint = properties.getEndpoint();
String header = getIsHttps();
// 云服务商直接返回

View File

@@ -18,7 +18,7 @@ public class OssProperties {
/**
* 自定义域名
*/
private String domain;
private String domainUrl;
/**
* 前缀

View File

@@ -30,7 +30,7 @@ public @interface Translation {
String mapper() default "";
/**
* 其他条件 例如: 字典type(sys_user_sex)
* 其他条件 例如: 字典type(sys_user_gender)
*/
String other() default "";