chore: 🙂更新前端API代码

This commit is contained in:
喵你个旺呀 2025-02-10 12:16:49 +08:00
parent 9f1e0d613f
commit d052b8747c
20 changed files with 1698 additions and 302 deletions

View File

@ -10,8 +10,7 @@
* 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';
@ -20,6 +19,7 @@ export * from './apis/sys-code-gen-config-api';
export * from './apis/sys-code-gen-template-api';
export * from './apis/sys-common-api';
export * from './apis/sys-config-api';
export * from './apis/sys-config-tenant-api';
export * from './apis/sys-const-api';
export * from './apis/sys-database-api';
export * from './apis/sys-db-backup-api';

View File

@ -0,0 +1,890 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
import { Configuration } from '../configuration';
// Some imports not used depending on template conditions
// @ts-ignore
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
import { AddConfigTenantInput } from '../models';
import { AdminNETResultListString } from '../models';
import { AdminNETResultListSysConfigTenant } from '../models';
import { AdminNETResultSqlSugarPagedListSysConfigTenant } from '../models';
import { AdminNETResultString } from '../models';
import { AdminNETResultSysConfigTenant } from '../models';
import { BatchConfigTenantInput } from '../models';
import { DeleteConfigTenantInput } from '../models';
import { PageConfigTenantInput } from '../models';
import { UpdateConfigTenantInput } from '../models';
/**
* SysConfigTenantApi - axios parameter creator
* @export
*/
export const SysConfigTenantApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
*
* @summary 🔖
* @param {AddConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantAddPost: async (body?: AddConfigTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/add`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {Array<number>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantBatchDeletePost: async (body?: Array<number>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/batchDelete`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {Array<BatchConfigTenantInput>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantBatchUpdatePost: async (body?: Array<BatchConfigTenantInput>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/batchUpdate`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary Code获取配置参数值 🔖
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantConfigValueByCodeCodeGet: async (code: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'code' is not null or undefined
if (code === null || code === undefined) {
throw new RequiredError('code','Required parameter code was null or undefined when calling apiSysConfigTenantConfigValueByCodeCodeGet.');
}
const localVarPath = `/api/sysConfigTenant/configValueByCode/{code}`
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {DeleteConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantDeletePost: async (body?: DeleteConfigTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/delete`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantDetailGet: async (id: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'id' is not null or undefined
if (id === null || id === undefined) {
throw new RequiredError('id','Required parameter id was null or undefined when calling apiSysConfigTenantDetailGet.');
}
const localVarPath = `/api/sysConfigTenant/detail`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
if (id !== undefined) {
localVarQueryParameter['Id'] = id;
}
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantGroupListGet: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/groupList`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantListPost: async (body?: PageConfigTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/list`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantPagePost: async (body?: PageConfigTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/page`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
/**
*
* @summary 🔖
* @param {UpdateConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysConfigTenantUpdatePost: async (body?: UpdateConfigTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysConfigTenant/update`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
const query = new URLSearchParams(localVarUrlObj.search);
for (const key in localVarQueryParameter) {
query.set(key, localVarQueryParameter[key]);
}
for (const key in options.params) {
query.set(key, options.params[key]);
}
localVarUrlObj.search = (new URLSearchParams(query)).toString();
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
return {
url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
options: localVarRequestOptions,
};
},
}
};
/**
* SysConfigTenantApi - functional programming interface
* @export
*/
export const SysConfigTenantApiFp = function(configuration?: Configuration) {
return {
/**
*
* @summary 🔖
* @param {AddConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantAddPost(body?: AddConfigTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantAddPost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {Array<number>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantBatchDeletePost(body?: Array<number>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantBatchDeletePost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {Array<BatchConfigTenantInput>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantBatchUpdatePost(body?: Array<BatchConfigTenantInput>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantBatchUpdatePost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary Code获取配置参数值 🔖
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantConfigValueByCodeCodeGet(code: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultString>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantConfigValueByCodeCodeGet(code, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {DeleteConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantDeletePost(body?: DeleteConfigTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantDeletePost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantDetailGet(id: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultSysConfigTenant>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantDetailGet(id, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantGroupListGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListString>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantGroupListGet(options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantListPost(body?: PageConfigTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysConfigTenant>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantListPost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantPagePost(body?: PageConfigTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultSqlSugarPagedListSysConfigTenant>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantPagePost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {UpdateConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantUpdatePost(body?: UpdateConfigTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
const localVarAxiosArgs = await SysConfigTenantApiAxiosParamCreator(configuration).apiSysConfigTenantUpdatePost(body, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
}
};
/**
* SysConfigTenantApi - factory interface
* @export
*/
export const SysConfigTenantApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
return {
/**
*
* @summary 🔖
* @param {AddConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantAddPost(body?: AddConfigTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantAddPost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {Array<number>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantBatchDeletePost(body?: Array<number>, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantBatchDeletePost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {Array<BatchConfigTenantInput>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantBatchUpdatePost(body?: Array<BatchConfigTenantInput>, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantBatchUpdatePost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary Code获取配置参数值 🔖
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantConfigValueByCodeCodeGet(code: string, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultString>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantConfigValueByCodeCodeGet(code, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {DeleteConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantDeletePost(body?: DeleteConfigTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantDeletePost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantDetailGet(id: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultSysConfigTenant>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantDetailGet(id, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantGroupListGet(options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListString>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantGroupListGet(options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantListPost(body?: PageConfigTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysConfigTenant>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantListPost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantPagePost(body?: PageConfigTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultSqlSugarPagedListSysConfigTenant>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantPagePost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {UpdateConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysConfigTenantUpdatePost(body?: UpdateConfigTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(configuration).apiSysConfigTenantUpdatePost(body, options).then((request) => request(axios, basePath));
},
};
};
/**
* SysConfigTenantApi - object-oriented interface
* @export
* @class SysConfigTenantApi
* @extends {BaseAPI}
*/
export class SysConfigTenantApi extends BaseAPI {
/**
*
* @summary 🔖
* @param {AddConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantAddPost(body?: AddConfigTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantAddPost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {Array<number>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantBatchDeletePost(body?: Array<number>, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantBatchDeletePost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {Array<BatchConfigTenantInput>} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantBatchUpdatePost(body?: Array<BatchConfigTenantInput>, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantBatchUpdatePost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary Code获取配置参数值 🔖
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantConfigValueByCodeCodeGet(code: string, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultString>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantConfigValueByCodeCodeGet(code, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {DeleteConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantDeletePost(body?: DeleteConfigTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantDeletePost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantDetailGet(id: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultSysConfigTenant>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantDetailGet(id, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantGroupListGet(options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListString>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantGroupListGet(options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantListPost(body?: PageConfigTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysConfigTenant>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantListPost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {PageConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantPagePost(body?: PageConfigTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultSqlSugarPagedListSysConfigTenant>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantPagePost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {UpdateConfigTenantInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysConfigTenantApi
*/
public async apiSysConfigTenantUpdatePost(body?: UpdateConfigTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
return SysConfigTenantApiFp(this.configuration).apiSysConfigTenantUpdatePost(body, options).then((request) => request(this.axios, this.basePath));
}
}

View File

@ -11,7 +11,6 @@
* 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
@ -132,15 +131,15 @@ export const SysDictDataApiAxiosParamCreator = function (configuration?: Configu
/**
*
* @summary 🔖
* @param {string} code
* @param {string} value
* @param {number} [status]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysDictDataDataListGet: async (code: string, status?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'code' is not null or undefined
if (code === null || code === undefined) {
throw new RequiredError('code','Required parameter code was null or undefined when calling apiSysDictDataDataListGet.');
apiSysDictDataDataListGet: async (value: string, status?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'value' is not null or undefined
if (value === null || value === undefined) {
throw new RequiredError('value','Required parameter value was null or undefined when calling apiSysDictDataDataListGet.');
}
const localVarPath = `/api/sysDictData/dataList`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
@ -162,8 +161,8 @@ export const SysDictDataApiAxiosParamCreator = function (configuration?: Configu
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
if (code !== undefined) {
localVarQueryParameter['Code'] = code;
if (value !== undefined) {
localVarQueryParameter['Value'] = value;
}
if (status !== undefined) {
@ -527,13 +526,13 @@ export const SysDictDataApiFp = function(configuration?: Configuration) {
/**
*
* @summary 🔖
* @param {string} code
* @param {string} value
* @param {number} [status]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysDictDataDataListGet(code: string, status?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysDictData>>> {
const localVarAxiosArgs = await SysDictDataApiAxiosParamCreator(configuration).apiSysDictDataDataListGet(code, status, options);
async apiSysDictDataDataListGet(value: string, status?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysDictData>>> {
const localVarAxiosArgs = await SysDictDataApiAxiosParamCreator(configuration).apiSysDictDataDataListGet(value, status, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
@ -656,13 +655,13 @@ export const SysDictDataApiFactory = function (configuration?: Configuration, ba
/**
*
* @summary 🔖
* @param {string} code
* @param {string} value
* @param {number} [status]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysDictDataDataListGet(code: string, status?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysDictData>> {
return SysDictDataApiFp(configuration).apiSysDictDataDataListGet(code, status, options).then((request) => request(axios, basePath));
async apiSysDictDataDataListGet(value: string, status?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysDictData>> {
return SysDictDataApiFp(configuration).apiSysDictDataDataListGet(value, status, options).then((request) => request(axios, basePath));
},
/**
*
@ -760,14 +759,14 @@ export class SysDictDataApi extends BaseAPI {
/**
*
* @summary 🔖
* @param {string} code
* @param {string} value
* @param {number} [status]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysDictDataApi
*/
public async apiSysDictDataDataListGet(code: string, status?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysDictData>> {
return SysDictDataApiFp(this.configuration).apiSysDictDataDataListGet(code, status, options).then((request) => request(this.axios, this.basePath));
public async apiSysDictDataDataListGet(value: string, status?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysDictData>> {
return SysDictDataApiFp(this.configuration).apiSysDictDataDataListGet(value, status, options).then((request) => request(this.axios, this.basePath));
}
/**
*

View File

@ -0,0 +1,117 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
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;
}

View File

@ -11,169 +11,123 @@
* 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
*/
tenantId?: number | null;
/**
* 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;
/**
*
*
* @type {string}
* @memberof AddDictDataInput
*/
name?: string | null;
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
*/

View File

@ -11,129 +11,107 @@
* 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
*/

View File

@ -0,0 +1,57 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
import { SysConfigTenant } from './sys-config-tenant';
/**
*
* @export
* @interface AdminNETResultListSysConfigTenant
*/
export interface AdminNETResultListSysConfigTenant {
/**
*
* @type {number}
* @memberof AdminNETResultListSysConfigTenant
*/
code?: number;
/**
* successwarningerror
* @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
*/
time?: Date;
}

View File

@ -0,0 +1,57 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
import { SqlSugarPagedListSysConfigTenant } from './sql-sugar-paged-list-sys-config-tenant';
/**
*
* @export
* @interface AdminNETResultSqlSugarPagedListSysConfigTenant
*/
export interface AdminNETResultSqlSugarPagedListSysConfigTenant {
/**
*
* @type {number}
* @memberof AdminNETResultSqlSugarPagedListSysConfigTenant
*/
code?: number;
/**
* successwarningerror
* @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
*/
time?: Date;
}

View File

@ -0,0 +1,57 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
import { SysConfigTenant } from './sys-config-tenant';
/**
*
* @export
* @interface AdminNETResultSysConfigTenant
*/
export interface AdminNETResultSysConfigTenant {
/**
*
* @type {number}
* @memberof AdminNETResultSysConfigTenant
*/
code?: number;
/**
* successwarningerror
* @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
*/
time?: Date;
}

View File

@ -0,0 +1,32 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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
* @interface BatchConfigTenantInput
*/
export interface BatchConfigTenantInput {
/**
*
* @type {string}
* @memberof BatchConfigTenantInput
*/
code?: string | null;
/**
*
* @type {string}
* @memberof BatchConfigTenantInput
*/
value?: string | null;
}

View File

@ -0,0 +1,26 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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
* @interface DeleteConfigTenantInput
*/
export interface DeleteConfigTenantInput {
/**
* Id
* @type {number}
* @memberof DeleteConfigTenantInput
*/
id: number;
}

View File

@ -0,0 +1,88 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
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
*/
groupCode?: string | null;
}

View File

@ -11,96 +11,76 @@
* 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
*/
value?: string | null;
label?: string | null;
/**
*
*
* @type {string}
* @memberof PageDictDataInput
*/

View File

@ -0,0 +1,63 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
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
*/
hasNextPage?: boolean;
}

View File

@ -0,0 +1,117 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
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;
}

View File

@ -11,169 +11,123 @@
* 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
*/
tenantId?: number | null;
/**
* 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;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
name?: string | null;
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
*/

View File

@ -11,129 +11,107 @@
* 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
*/

View File

@ -0,0 +1,117 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
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;
}

View File

@ -11,169 +11,123 @@
* 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
*/
tenantId?: number | null;
/**
* 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;
/**
*
*
* @type {string}
* @memberof UpdateDictDataInput
*/
name?: string | null;
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
*/

View File

@ -11,129 +11,107 @@
* 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
*/