😎1、清理代码 2、升级依赖

This commit is contained in:
zuohuaijun 2024-10-21 00:08:46 +08:00
parent f2ec3d7c58
commit 1a10d0a365
6 changed files with 10 additions and 7 deletions

View File

@ -35,7 +35,7 @@
<PackageReference Include="Novell.Directory.Ldap.NETStandard" Version="3.6.0" />
<PackageReference Include="QRCoder" Version="1.6.0" />
<PackageReference Include="RabbitMQ.Client" Version="6.8.1" />
<PackageReference Include="SixLabors.ImageSharp.Web" Version="3.1.2" />
<PackageReference Include="SixLabors.ImageSharp.Web" Version="3.1.3" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.8" />
<PackageReference Include="SKIT.FlurlHttpClient.Wechat.Api" Version="3.5.0" />
<PackageReference Include="SKIT.FlurlHttpClient.Wechat.TenpayV3" Version="3.8.0" />

View File

@ -34,6 +34,7 @@ public class QueryRegionInput
/// 父节点Id
/// </summary>
public long? Pid { get; set; }
/// <summary>
/// 名称
/// </summary>
@ -43,6 +44,7 @@ public class QueryRegionInput
/// 编码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 类型
/// </summary>

View File

@ -2,7 +2,7 @@
"name": "admin.net.pro",
"type": "module",
"version": "2.4.33",
"lastBuildTime": "2024.10.19",
"lastBuildTime": "2024.10.20",
"description": "Admin.NET 站在巨人肩膀上的 .NET 通用权限开发框架",
"author": "zuohuaijun",
"license": "MIT",
@ -91,13 +91,13 @@
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/compiler-sfc": "^3.5.12",
"code-inspector-plugin": "^0.17.2",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.29.0",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.1",
"globals": "^15.11.0",
"less": "^4.2.0",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.2",
"sass": "^1.80.3",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"vite": "^5.4.9",

View File

@ -25,10 +25,10 @@ import { AdminResultSqlSugarPagedListSysRegion } from '../models';
import { DeleteRegionInput } from '../models';
import { GenOrgInput } from '../models';
import { PageRegionInput } from '../models';
import { QueryRegionInput } from '../models';
import { SyncInput } from '../models';
import { TiandituInput } from '../models';
import { UpdateRegionInput } from '../models';
import { QueryRegionInput } from '../models/query-region-input';
/**
* SysRegionApi - axios parameter creator
* @export

View File

@ -295,6 +295,7 @@ export * from './print-type-enum';
export * from './promotion';
export * from './property-attributes';
export * from './property-info';
export * from './query-region-input';
export * from './refund-request-input';
export * from './reset-pwd-user-input';
export * from './role-api-input';

View File

@ -26,7 +26,7 @@ export interface QueryRegionInput {
* @type {number}
* @memberof QueryRegionInput
*/
pid?: number;
pid?: number | null;
/**
*