mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-04-09 12:03:15 +08:00
update 重构 修改框架内不正常命名与规范是和否的状态
This commit is contained in:
@@ -30,12 +30,12 @@ public interface SystemConstants {
|
||||
/**
|
||||
* 是否菜单外链(是)
|
||||
*/
|
||||
String YES_FRAME = "0";
|
||||
String YES_FRAME = "Y";
|
||||
|
||||
/**
|
||||
* 是否菜单外链(否)
|
||||
*/
|
||||
String NO_FRAME = "1";
|
||||
String NO_FRAME = "N";
|
||||
|
||||
/**
|
||||
* 菜单类型(目录)
|
||||
|
||||
@@ -19,7 +19,7 @@ import java.lang.annotation.Target;
|
||||
public @interface DictPattern {
|
||||
|
||||
/**
|
||||
* 字典类型,如 "sys_user_sex"
|
||||
* 字典类型,如 "sys_user_gender"
|
||||
*/
|
||||
String dictType();
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.lang.annotation.*;
|
||||
public @interface ExcelDictFormat {
|
||||
|
||||
/**
|
||||
* 如果是字典类型,请设置字典的type值 (如: sys_user_sex)
|
||||
* 如果是字典类型,请设置字典的type值 (如: sys_user_gender)
|
||||
*/
|
||||
String dictType() default "";
|
||||
|
||||
|
||||
@@ -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();
|
||||
// 云服务商直接返回
|
||||
|
||||
@@ -18,7 +18,7 @@ public class OssProperties {
|
||||
/**
|
||||
* 自定义域名
|
||||
*/
|
||||
private String domain;
|
||||
private String domainUrl;
|
||||
|
||||
/**
|
||||
* 前缀
|
||||
|
||||
@@ -30,7 +30,7 @@ public @interface Translation {
|
||||
String mapper() default "";
|
||||
|
||||
/**
|
||||
* 其他条件 例如: 字典type(sys_user_sex)
|
||||
* 其他条件 例如: 字典type(sys_user_gender)
|
||||
*/
|
||||
String other() default "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user