Explorar o código

fix 修复 错别字

疯狂的狮子Li %!s(int64=2) %!d(string=hai) anos
pai
achega
74e884c3ab

+ 1 - 1
ruoyi-modules/ruoyi-resource/src/main/java/org/dromara/resource/domain/SysOssConfig.java

@@ -17,7 +17,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
 public class SysOssConfig extends BaseEntity {
 public class SysOssConfig extends BaseEntity {
 
 
     /**
     /**
-     * 主
+     * 主
      */
      */
     @TableId(value = "oss_config_id")
     @TableId(value = "oss_config_id")
     private Long ossConfigId;
     private Long ossConfigId;

+ 2 - 2
ruoyi-modules/ruoyi-resource/src/main/java/org/dromara/resource/domain/bo/SysOssConfigBo.java

@@ -25,9 +25,9 @@ import jakarta.validation.constraints.Size;
 public class SysOssConfigBo extends BaseEntity {
 public class SysOssConfigBo extends BaseEntity {
 
 
     /**
     /**
-     * 主
+     * 主
      */
      */
-    @NotNull(message = "主不能为空", groups = {EditGroup.class})
+    @NotNull(message = "主不能为空", groups = {EditGroup.class})
     private Long ossConfigId;
     private Long ossConfigId;
 
 
     /**
     /**

+ 1 - 1
ruoyi-modules/ruoyi-resource/src/main/java/org/dromara/resource/domain/vo/SysOssConfigVo.java

@@ -23,7 +23,7 @@ public class SysOssConfigVo implements Serializable {
     private static final long serialVersionUID = 1L;
     private static final long serialVersionUID = 1L;
 
 
     /**
     /**
-     * 主
+     * 主
      */
      */
     private Long ossConfigId;
     private Long ossConfigId;
 
 

+ 2 - 2
sql/oracle/oracle_ry_cloud.sql

@@ -1189,7 +1189,7 @@ create table sys_oss_config (
 alter table sys_oss_config add constraint pk_sys_oss_config primary key (oss_config_id);
 alter table sys_oss_config add constraint pk_sys_oss_config primary key (oss_config_id);
 
 
 comment on table sys_oss_config                 is '对象存储配置表';
 comment on table sys_oss_config                 is '对象存储配置表';
-comment on column sys_oss_config.oss_config_id  is '主';
+comment on column sys_oss_config.oss_config_id  is '主';
 comment on column sys_oss_config.tenant_id      is '租户编码';
 comment on column sys_oss_config.tenant_id      is '租户编码';
 comment on column sys_oss_config.config_key     is '配置key';
 comment on column sys_oss_config.config_key     is '配置key';
 comment on column sys_oss_config.access_key     is 'accesskey';
 comment on column sys_oss_config.access_key     is 'accesskey';
@@ -1241,7 +1241,7 @@ create table sys_client (
 alter table sys_client add constraint pk_sys_client primary key (id);
 alter table sys_client add constraint pk_sys_client primary key (id);
 
 
 comment on table sys_client                         is '系统授权表';
 comment on table sys_client                         is '系统授权表';
-comment on column sys_client.id                     is '主';
+comment on column sys_client.id                     is '主';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_secret          is '客户端秘钥';
 comment on column sys_client.client_secret          is '客户端秘钥';

+ 2 - 2
sql/postgres/postgres_ry_cloud.sql

@@ -1189,7 +1189,7 @@ create table if not exists sys_oss_config
 );
 );
 
 
 comment on table sys_oss_config                 is '对象存储配置表';
 comment on table sys_oss_config                 is '对象存储配置表';
-comment on column sys_oss_config.oss_config_id  is '主';
+comment on column sys_oss_config.oss_config_id  is '主';
 comment on column sys_oss_config.tenant_id      is '租户编码';
 comment on column sys_oss_config.tenant_id      is '租户编码';
 comment on column sys_oss_config.config_key     is '配置key';
 comment on column sys_oss_config.config_key     is '配置key';
 comment on column sys_oss_config.access_key     is 'accessKey';
 comment on column sys_oss_config.access_key     is 'accessKey';
@@ -1240,7 +1240,7 @@ create table sys_client (
 );
 );
 
 
 comment on table sys_client                         is '系统授权表';
 comment on table sys_client                         is '系统授权表';
-comment on column sys_client.id                     is '主';
+comment on column sys_client.id                     is '主';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_secret          is '客户端秘钥';
 comment on column sys_client.client_secret          is '客户端秘钥';

+ 1 - 1
sql/ry-cloud.sql

@@ -817,7 +817,7 @@ create table sys_oss (
 -- OSS对象存储动态配置表
 -- OSS对象存储动态配置表
 -- ----------------------------
 -- ----------------------------
 create table sys_oss_config (
 create table sys_oss_config (
-  oss_config_id   bigint(20)    not null                  comment '主',
+  oss_config_id   bigint(20)    not null                  comment '主',
   tenant_id       varchar(20)             default '000000'comment '租户编号',
   tenant_id       varchar(20)             default '000000'comment '租户编号',
   config_key      varchar(20)   not null  default ''      comment '配置key',
   config_key      varchar(20)   not null  default ''      comment '配置key',
   access_key      varchar(255)            default ''      comment 'accessKey',
   access_key      varchar(255)            default ''      comment 'accessKey',

+ 1 - 1
sql/update/oracle/update_2.0-2.1.sql

@@ -94,7 +94,7 @@ create table sys_client (
 alter table sys_client add constraint pk_sys_client primary key (id);
 alter table sys_client add constraint pk_sys_client primary key (id);
 
 
 comment on table sys_client                         is '系统授权表';
 comment on table sys_client                         is '系统授权表';
-comment on column sys_client.id                     is '主';
+comment on column sys_client.id                     is '主';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_secret          is '客户端秘钥';
 comment on column sys_client.client_secret          is '客户端秘钥';

+ 1 - 1
sql/update/postgres/update_2.0-2.1.sql

@@ -93,7 +93,7 @@ create table sys_client (
 );
 );
 
 
 comment on table sys_client                         is '系统授权表';
 comment on table sys_client                         is '系统授权表';
-comment on column sys_client.id                     is '主';
+comment on column sys_client.id                     is '主';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_id              is '客户端id';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_key             is '客户端key';
 comment on column sys_client.client_secret          is '客户端秘钥';
 comment on column sys_client.client_secret          is '客户端秘钥';