Bladeren bron

😁1、升级Furion v4.9.1.13 2、增加minio配置示例

zuohuaijun 2 jaren geleden
bovenliggende
commit
8f8d3c9fdc

+ 7 - 7
Admin.NET/Admin.NET.Application/Configuration/Upload.json

@@ -9,13 +9,13 @@
   },
   "OSSProvider": {
     "IsEnable": false,
-    "Provider": "Aliyun", // OSS提供者 Invalid/Minio/Aliyun/QCloud/Qiniu/HuaweiCloud
-    "Endpoint": "", // 节点 在腾讯云OSS中表示AppId
-    "Region": "", // 地域
-    "AccessKey": "",
-    "SecretKey": "",
-    "IsEnableHttps": true, // 是否启用HTTPS
+    "Provider": "Minio", // OSS提供者 Invalid/Minio/Aliyun/QCloud/Qiniu/HuaweiCloud
+    "Endpoint": "101.43.53.74:8090", // 节点/API地址(在腾讯云OSS中表示AppId)
+    "Region": "101.43.53.74", // 地域
+    "AccessKey": "NwTCTqITTUdtbw82efob",
+    "SecretKey": "OlKjPu7HlOwhc67OkL82RzRXV9NcoEvpFKJ0vL04",
+    "IsEnableHttps": false, // 是否启用HTTPS
     "IsEnableCache": true, // 是否启用缓存
-    "Bucket": ""
+    "Bucket": "admin.net"
   }
 }

+ 3 - 3
Admin.NET/Admin.NET.Core/Admin.NET.Core.csproj

@@ -21,9 +21,9 @@
     <PackageReference Include="AspNet.Security.OAuth.Gitee" Version="6.0.15" />
     <PackageReference Include="AspNet.Security.OAuth.Weixin" Version="6.0.15" />
     <PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
-    <PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.1.12" />
-    <PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.1.12" />
-    <PackageReference Include="Furion.Pure" Version="4.9.1.12" />
+    <PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.1.13" />
+    <PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.1.13" />
+    <PackageReference Include="Furion.Pure" Version="4.9.1.13" />
     <PackageReference Include="IPTools.China" Version="1.6.0" />
     <PackageReference Include="Lazy.Captcha.Core" Version="2.0.6" />
     <PackageReference Include="Magicodes.IE.Excel" Version="2.7.4.5" />

+ 16 - 0
Web/src/api-services/models/add-code-gen-input.ts

@@ -128,6 +128,22 @@ export interface AddCodeGenInput {
      */
     menuApplication?: string | null;
 
+    /**
+     * 支持打印类型
+     *
+     * @type {string}
+     * @memberof AddCodeGenInput
+     */
+    printType?: string | null;
+
+    /**
+     * 打印模版名称
+     *
+     * @type {string}
+     * @memberof AddCodeGenInput
+     */
+    printName?: string | null;
+
     /**
      * 数据库表名
      *

+ 16 - 0
Web/src/api-services/models/code-gen-input.ts

@@ -175,4 +175,20 @@ export interface CodeGenInput {
      * @memberof CodeGenInput
      */
     menuPid?: number;
+
+    /**
+     * 支持打印类型
+     *
+     * @type {string}
+     * @memberof CodeGenInput
+     */
+    printType?: string | null;
+
+    /**
+     * 打印模版名称
+     *
+     * @type {string}
+     * @memberof CodeGenInput
+     */
+    printName?: string | null;
 }

+ 32 - 0
Web/src/api-services/models/menu-output.ts

@@ -112,6 +112,38 @@ export interface MenuOutput {
      */
     remark?: string | null;
 
+    /**
+     * 创建时间
+     *
+     * @type {Date}
+     * @memberof MenuOutput
+     */
+    createTime?: Date;
+
+    /**
+     * 更新时间
+     *
+     * @type {Date}
+     * @memberof MenuOutput
+     */
+    updateTime?: Date;
+
+    /**
+     * 创建者姓名
+     *
+     * @type {string}
+     * @memberof MenuOutput
+     */
+    createUserName?: string | null;
+
+    /**
+     * 修改者姓名
+     *
+     * @type {string}
+     * @memberof MenuOutput
+     */
+    updateUserName?: string | null;
+
     /**
      * @type {SysMenuMeta}
      * @memberof MenuOutput

+ 16 - 0
Web/src/api-services/models/sys-code-gen.ts

@@ -175,4 +175,20 @@ export interface SysCodeGen {
      * @memberof SysCodeGen
      */
     menuPid?: number;
+
+    /**
+     * 支持打印类型
+     *
+     * @type {string}
+     * @memberof SysCodeGen
+     */
+    printType?: string | null;
+
+    /**
+     * 打印模版名称
+     *
+     * @type {string}
+     * @memberof SysCodeGen
+     */
+    printName?: string | null;
 }

+ 16 - 14
Web/src/api-services/models/update-code-gen-input.ts

@@ -64,20 +64,6 @@ export interface UpdateCodeGenInput {
      */
     descStr?: string | null;
 
-    /**
-     * 打印模版名称
-     * @type {number}
-     * @memberof UpdateCodeGenInput
-     */
-    printName?: string | null;
-
-    /**
-     * 支持打印类型
-     * @type {string}
-     * @memberof UpdateCodeGenInput
-     */
-    printType?: string | null;
-    
     /**
      * 作者姓名
      *
@@ -190,6 +176,22 @@ export interface UpdateCodeGenInput {
      */
     menuPid?: number;
 
+    /**
+     * 支持打印类型
+     *
+     * @type {string}
+     * @memberof UpdateCodeGenInput
+     */
+    printType?: string | null;
+
+    /**
+     * 打印模版名称
+     *
+     * @type {string}
+     * @memberof UpdateCodeGenInput
+     */
+    printName?: string | null;
+
     /**
      * 代码生成器Id
      *

+ 1 - 1
Web/src/stores/themeConfig.ts

@@ -18,7 +18,7 @@ export const useThemeConfig = defineStore('themeConfig', {
 			 * 全局主题
 			 */
 			// 默认 primary 主题颜色
-			primary: '#DE2910', //红色:#DE2910 //蓝色:#11559C //绿色:#057748
+			primary: '#11559C', //红色:#DE2910 //蓝色:#11559C //绿色:#057748
 			// 是否开启深色模式
 			isIsDark: false,