😎更新前端请求文件
This commit is contained in:
parent
305ee54cd2
commit
3216a4ac99
@ -2,7 +2,7 @@
|
||||
"name": "admin.net.pro",
|
||||
"type": "module",
|
||||
"version": "2.4.33",
|
||||
"lastBuildTime": "2025.02.15",
|
||||
"lastBuildTime": "2025.02.16",
|
||||
"description": "Admin.NET 站在巨人肩膀上的 .NET 通用权限开发框架",
|
||||
"author": "zuohuaijun",
|
||||
"license": "MIT",
|
||||
@ -24,7 +24,7 @@
|
||||
"@vue-office/docx": "^1.6.2",
|
||||
"@vue-office/excel": "^1.7.14",
|
||||
"@vue-office/pdf": "^2.0.9",
|
||||
"@vueuse/core": "^12.6.1",
|
||||
"@vueuse/core": "^12.7.0",
|
||||
"@wangeditor/editor": "^5.1.23",
|
||||
"@wangeditor/editor-for-vue": "^5.1.12",
|
||||
"animate.css": "^4.1.1",
|
||||
@ -74,7 +74,7 @@
|
||||
"vue-router": "^4.5.0",
|
||||
"vue-signature-pad": "^3.0.2",
|
||||
"vue3-tree-org": "^4.2.2",
|
||||
"vxe-pc-ui": "^4.3.85",
|
||||
"vxe-pc-ui": "^4.3.86",
|
||||
"vxe-table": "^4.10.0",
|
||||
"vxe-table-plugin-element": "^4.0.4",
|
||||
"vxe-table-plugin-export-xlsx": "^4.0.7",
|
||||
@ -85,7 +85,7 @@
|
||||
"@iconify/vue": "^4.3.0",
|
||||
"@plugin-web-update-notification/vite": "^2.0.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/node": "^20.17.17",
|
||||
"@types/node": "^20.17.19",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"@types/sortablejs": "^1.15.8",
|
||||
"@typescript-eslint/eslint-plugin": "^8.24.0",
|
||||
|
||||
@ -10,7 +10,8 @@
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/export * from './apis/apijsonapi';
|
||||
*/
|
||||
export * from './apis/apijsonapi';
|
||||
export * from './apis/sys-alipay-api';
|
||||
export * from './apis/sys-auth-api';
|
||||
export * from './apis/sys-cache-api';
|
||||
|
||||
@ -11,6 +11,7 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
|
||||
import { Configuration } from '../configuration';
|
||||
// Some imports not used depending on template conditions
|
||||
|
||||
@ -11,6 +11,7 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
|
||||
import { Configuration } from '../configuration';
|
||||
// Some imports not used depending on template conditions
|
||||
|
||||
@ -11,107 +11,139 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface AddConfigTenantInput
|
||||
*/
|
||||
export interface AddConfigTenantInput {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
/**
|
||||
* 租户Id
|
||||
* @type {number}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
value?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
sysFlag?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 分组编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
groupCode?: string | null;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddConfigTenantInput
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
}
|
||||
|
||||
@ -11,123 +11,161 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface AddDictDataInput
|
||||
*/
|
||||
export interface AddDictDataInput {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 字典类型Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
dictTypeId?: number;
|
||||
|
||||
/**
|
||||
* 显示文本
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
label: string;
|
||||
|
||||
/**
|
||||
* 值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
value: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-标签颜色
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
tagType?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-Style(控制显示样式)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
styleSetting?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-Class(控制显示样式)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
classSetting?: string | null;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
* 拓展数据(保存业务功能的配置项)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
extData?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {StatusEnum}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
|
||||
@ -11,107 +11,135 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
import { SysDictData } from './sys-dict-data';
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface AddDictTypeInput
|
||||
*/
|
||||
export interface AddDictTypeInput {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
code: string;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {StatusEnum}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
status?: StatusEnum;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
isTenant?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 字典值集合
|
||||
*
|
||||
* @type {Array<SysDictData>}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
children?: Array<SysDictData> | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
|
||||
@ -11,45 +11,59 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { SysConfigTenant } from './sys-config-tenant';
|
||||
/**
|
||||
/**
|
||||
* 全局返回结果
|
||||
*
|
||||
* @export
|
||||
* @interface AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
export interface AdminNETResultListSysConfigTenant {
|
||||
|
||||
/**
|
||||
* 状态码
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
code?: number;
|
||||
|
||||
/**
|
||||
* 类型success、warning、error
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
type?: string | null;
|
||||
|
||||
/**
|
||||
* 错误信息
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
message?: string | null;
|
||||
|
||||
/**
|
||||
* 数据
|
||||
*
|
||||
* @type {Array<SysConfigTenant>}
|
||||
* @memberof AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
result?: Array<SysConfigTenant> | null;
|
||||
|
||||
/**
|
||||
* 附加数据
|
||||
*
|
||||
* @type {any}
|
||||
* @memberof AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
extras?: any | null;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AdminNETResultListSysConfigTenant
|
||||
*/
|
||||
|
||||
@ -11,45 +11,57 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { SqlSugarPagedListSysConfigTenant } from './sql-sugar-paged-list-sys-config-tenant';
|
||||
/**
|
||||
/**
|
||||
* 全局返回结果
|
||||
*
|
||||
* @export
|
||||
* @interface AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
export interface AdminNETResultSqlSugarPagedListSysConfigTenant {
|
||||
|
||||
/**
|
||||
* 状态码
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
code?: number;
|
||||
|
||||
/**
|
||||
* 类型success、warning、error
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
type?: string | null;
|
||||
|
||||
/**
|
||||
* 错误信息
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
message?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {SqlSugarPagedListSysConfigTenant}
|
||||
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
result?: SqlSugarPagedListSysConfigTenant;
|
||||
|
||||
/**
|
||||
* 附加数据
|
||||
*
|
||||
* @type {any}
|
||||
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
extras?: any | null;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
|
||||
@ -11,45 +11,57 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { SysConfigTenant } from './sys-config-tenant';
|
||||
/**
|
||||
/**
|
||||
* 全局返回结果
|
||||
*
|
||||
* @export
|
||||
* @interface AdminNETResultSysConfigTenant
|
||||
*/
|
||||
export interface AdminNETResultSysConfigTenant {
|
||||
|
||||
/**
|
||||
* 状态码
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof AdminNETResultSysConfigTenant
|
||||
*/
|
||||
code?: number;
|
||||
|
||||
/**
|
||||
* 类型success、warning、error
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AdminNETResultSysConfigTenant
|
||||
*/
|
||||
type?: string | null;
|
||||
|
||||
/**
|
||||
* 错误信息
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof AdminNETResultSysConfigTenant
|
||||
*/
|
||||
message?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {SysConfigTenant}
|
||||
* @memberof AdminNETResultSysConfigTenant
|
||||
*/
|
||||
result?: SysConfigTenant;
|
||||
|
||||
/**
|
||||
* 附加数据
|
||||
*
|
||||
* @type {any}
|
||||
* @memberof AdminNETResultSysConfigTenant
|
||||
*/
|
||||
extras?: any | null;
|
||||
|
||||
/**
|
||||
* 时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof AdminNETResultSysConfigTenant
|
||||
*/
|
||||
|
||||
@ -11,20 +11,26 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
/**
|
||||
|
||||
/**
|
||||
* 批量配置参数输入
|
||||
*
|
||||
* @export
|
||||
* @interface BatchConfigTenantInput
|
||||
*/
|
||||
export interface BatchConfigTenantInput {
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof BatchConfigTenantInput
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 属性值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof BatchConfigTenantInput
|
||||
*/
|
||||
|
||||
@ -11,14 +11,18 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
/**
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface DeleteConfigTenantInput
|
||||
*/
|
||||
export interface DeleteConfigTenantInput {
|
||||
|
||||
/**
|
||||
* 主键Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof DeleteConfigTenantInput
|
||||
*/
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
export * from './account-type-enum';
|
||||
export * from './add-code-gen-input';
|
||||
export * from './add-config-input';
|
||||
export * from './add-config-tenant-input';
|
||||
export * from './add-dict-data-input';
|
||||
export * from './add-dict-type-input';
|
||||
export * from './add-job-detail-input';
|
||||
@ -57,6 +58,7 @@ export * from './admin-netresult-list-stat-log-output';
|
||||
export * from './admin-netresult-list-string';
|
||||
export * from './admin-netresult-list-sys-code-gen-template';
|
||||
export * from './admin-netresult-list-sys-config';
|
||||
export * from './admin-netresult-list-sys-config-tenant';
|
||||
export * from './admin-netresult-list-sys-dict-data';
|
||||
export * from './admin-netresult-list-sys-dict-type';
|
||||
export * from './admin-netresult-list-sys-file';
|
||||
@ -85,6 +87,7 @@ export * from './admin-netresult-sql-sugar-paged-list-page-pos-output';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-page-role-output';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-sys-code-gen';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-sys-config';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-sys-config-tenant';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-sys-dict-data';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-sys-dict-type';
|
||||
export * from './admin-netresult-sql-sugar-paged-list-sys-file';
|
||||
@ -110,6 +113,7 @@ export * from './admin-netresult-string';
|
||||
export * from './admin-netresult-sys-code-gen';
|
||||
export * from './admin-netresult-sys-code-gen-config';
|
||||
export * from './admin-netresult-sys-config';
|
||||
export * from './admin-netresult-sys-config-tenant';
|
||||
export * from './admin-netresult-sys-dict-data';
|
||||
export * from './admin-netresult-sys-dict-type';
|
||||
export * from './admin-netresult-sys-file';
|
||||
@ -135,6 +139,7 @@ export * from './api-output';
|
||||
export * from './assembly';
|
||||
export * from './base-proc-input';
|
||||
export * from './batch-config-input';
|
||||
export * from './batch-config-tenant-input';
|
||||
export * from './calendar';
|
||||
export * from './calendar-algorithm-type';
|
||||
export * from './calendar-week-rule';
|
||||
@ -178,6 +183,7 @@ export * from './db-table-input';
|
||||
export * from './db-type';
|
||||
export * from './delete-code-gen-input';
|
||||
export * from './delete-config-input';
|
||||
export * from './delete-config-tenant-input';
|
||||
export * from './delete-db-column-input';
|
||||
export * from './delete-db-table-input';
|
||||
export * from './delete-dict-data-input';
|
||||
@ -282,6 +288,7 @@ export * from './open-access-output';
|
||||
export * from './order-by-type';
|
||||
export * from './page-code-gen-input';
|
||||
export * from './page-config-input';
|
||||
export * from './page-config-tenant-input';
|
||||
export * from './page-dict-data-input';
|
||||
export * from './page-dict-type-input';
|
||||
export * from './page-ex-log-input';
|
||||
@ -347,6 +354,7 @@ export * from './sql-sugar-paged-list-page-pos-output';
|
||||
export * from './sql-sugar-paged-list-page-role-output';
|
||||
export * from './sql-sugar-paged-list-sys-code-gen';
|
||||
export * from './sql-sugar-paged-list-sys-config';
|
||||
export * from './sql-sugar-paged-list-sys-config-tenant';
|
||||
export * from './sql-sugar-paged-list-sys-dict-data';
|
||||
export * from './sql-sugar-paged-list-sys-dict-type';
|
||||
export * from './sql-sugar-paged-list-sys-file';
|
||||
@ -380,6 +388,7 @@ export * from './sys-code-gen-config';
|
||||
export * from './sys-code-gen-template';
|
||||
export * from './sys-code-gen-template-relation';
|
||||
export * from './sys-config';
|
||||
export * from './sys-config-tenant';
|
||||
export * from './sys-dict-data';
|
||||
export * from './sys-dict-type';
|
||||
export * from './sys-file';
|
||||
@ -435,6 +444,7 @@ export * from './type-info';
|
||||
export * from './unlock-login-input';
|
||||
export * from './update-code-gen-input';
|
||||
export * from './update-config-input';
|
||||
export * from './update-config-tenant-input';
|
||||
export * from './update-db-column-input';
|
||||
export * from './update-db-table-input';
|
||||
export * from './update-dict-data-input';
|
||||
|
||||
@ -11,76 +11,96 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { Filter } from './filter';
|
||||
import { Search } from './search';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface PageConfigTenantInput
|
||||
*/
|
||||
export interface PageConfigTenantInput {
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {Search}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
search?: Search;
|
||||
|
||||
/**
|
||||
* 模糊查询关键字
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
keyword?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {Filter}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
filter?: Filter;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
page?: number;
|
||||
|
||||
/**
|
||||
* 页码容量
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
pageSize?: number;
|
||||
|
||||
/**
|
||||
* 排序字段
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
field?: string | null;
|
||||
|
||||
/**
|
||||
* 排序方向
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
order?: string | null;
|
||||
|
||||
/**
|
||||
* 降序排序
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
descStr?: string | null;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
name?: string | null;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 分组编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageConfigTenantInput
|
||||
*/
|
||||
|
||||
@ -11,76 +11,96 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { Filter } from './filter';
|
||||
import { Search } from './search';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface PageDictDataInput
|
||||
*/
|
||||
export interface PageDictDataInput {
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {Search}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
search?: Search;
|
||||
|
||||
/**
|
||||
* 模糊查询关键字
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
keyword?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {Filter}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
filter?: Filter;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
page?: number;
|
||||
|
||||
/**
|
||||
* 页码容量
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
pageSize?: number;
|
||||
|
||||
/**
|
||||
* 排序字段
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
field?: string | null;
|
||||
|
||||
/**
|
||||
* 排序方向
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
order?: string | null;
|
||||
|
||||
/**
|
||||
* 降序排序
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
descStr?: string | null;
|
||||
|
||||
/**
|
||||
* 字典类型Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
dictTypeId?: number;
|
||||
|
||||
/**
|
||||
* 文本
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
label?: string | null;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageDictDataInput
|
||||
*/
|
||||
|
||||
@ -11,51 +11,67 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { SysConfigTenant } from './sys-config-tenant';
|
||||
/**
|
||||
/**
|
||||
* 分页泛型集合
|
||||
*
|
||||
* @export
|
||||
* @interface SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
export interface SqlSugarPagedListSysConfigTenant {
|
||||
|
||||
/**
|
||||
* 页码
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
page?: number;
|
||||
|
||||
/**
|
||||
* 页容量
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
pageSize?: number;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
total?: number;
|
||||
|
||||
/**
|
||||
* 总页数
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
totalPages?: number;
|
||||
|
||||
/**
|
||||
* 当前页集合
|
||||
*
|
||||
* @type {Array<SysConfigTenant>}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
items?: Array<SysConfigTenant> | null;
|
||||
|
||||
/**
|
||||
* 是否有上一页
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
hasPrevPage?: boolean;
|
||||
|
||||
/**
|
||||
* 是否有下一页
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SqlSugarPagedListSysConfigTenant
|
||||
*/
|
||||
|
||||
@ -35,7 +35,7 @@ export interface StressTestInput {
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof StressTestInput
|
||||
* @example 100
|
||||
* @example 10
|
||||
*/
|
||||
numberOfRequests: number;
|
||||
|
||||
|
||||
@ -11,107 +11,139 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
/**
|
||||
* 系统租户配置参数表
|
||||
*
|
||||
* @export
|
||||
* @interface SysConfigTenant
|
||||
*/
|
||||
export interface SysConfigTenant {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
/**
|
||||
* 租户Id
|
||||
* @type {number}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
value?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
sysFlag?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 分组编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
groupCode?: string | null;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysConfigTenant
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
}
|
||||
|
||||
@ -11,123 +11,161 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
/**
|
||||
/**
|
||||
* 系统字典值表
|
||||
*
|
||||
* @export
|
||||
* @interface SysDictData
|
||||
*/
|
||||
export interface SysDictData {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 字典类型Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
dictTypeId?: number;
|
||||
|
||||
/**
|
||||
* 显示文本
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
label: string;
|
||||
|
||||
/**
|
||||
* 值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
value: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-标签颜色
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
tagType?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-Style(控制显示样式)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
styleSetting?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-Class(控制显示样式)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
classSetting?: string | null;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
* 拓展数据(保存业务功能的配置项)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
extData?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {StatusEnum}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
|
||||
@ -11,107 +11,135 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
import { SysDictData } from './sys-dict-data';
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
/**
|
||||
* 系统字典类型表
|
||||
*
|
||||
* @export
|
||||
* @interface SysDictType
|
||||
*/
|
||||
export interface SysDictType {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
code: string;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {StatusEnum}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
status?: StatusEnum;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
sysFlag?: YesNoEnum;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
isTenant?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 字典值集合
|
||||
*
|
||||
* @type {Array<SysDictData>}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
|
||||
@ -11,107 +11,139 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface UpdateConfigTenantInput
|
||||
*/
|
||||
export interface UpdateConfigTenantInput {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
/**
|
||||
* 租户Id
|
||||
* @type {number}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
value?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
sysFlag?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 分组编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
groupCode?: string | null;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateConfigTenantInput
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
}
|
||||
|
||||
@ -11,123 +11,161 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface UpdateDictDataInput
|
||||
*/
|
||||
export interface UpdateDictDataInput {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 字典类型Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
dictTypeId?: number;
|
||||
|
||||
/**
|
||||
* 显示文本
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
label: string;
|
||||
|
||||
/**
|
||||
* 值
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
value: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
code?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-标签颜色
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
tagType?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-Style(控制显示样式)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
styleSetting?: string | null;
|
||||
|
||||
/**
|
||||
* 显示样式-Class(控制显示样式)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
classSetting?: string | null;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
* 拓展数据(保存业务功能的配置项)
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
extData?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {StatusEnum}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
|
||||
@ -11,107 +11,135 @@
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
import { SysDictData } from './sys-dict-data';
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface UpdateDictTypeInput
|
||||
*/
|
||||
export interface UpdateDictTypeInput {
|
||||
|
||||
/**
|
||||
* 雪花Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 编码
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
code: string;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
orderNo?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
remark?: string | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {StatusEnum}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
status?: StatusEnum;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
isTenant?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 字典值集合
|
||||
*
|
||||
* @type {Array<SysDictData>}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
children?: Array<SysDictData> | null;
|
||||
|
||||
/**
|
||||
*
|
||||
* @type {YesNoEnum}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user