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. * NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */export * from './apis/apijsonapi';
export * from './apis/apijsonapi';
export * from './apis/sys-alipay-api'; export * from './apis/sys-alipay-api';
export * from './apis/sys-auth-api'; export * from './apis/sys-auth-api';
export * from './apis/sys-cache-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-code-gen-template-api';
export * from './apis/sys-common-api'; export * from './apis/sys-common-api';
export * from './apis/sys-config-api'; export * from './apis/sys-config-api';
export * from './apis/sys-config-tenant-api';
export * from './apis/sys-const-api'; export * from './apis/sys-const-api';
export * from './apis/sys-database-api'; export * from './apis/sys-database-api';
export * from './apis/sys-db-backup-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 * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios'; import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
import { Configuration } from '../configuration'; import { Configuration } from '../configuration';
// Some imports not used depending on template conditions // Some imports not used depending on template conditions
@ -132,15 +131,15 @@ export const SysDictDataApiAxiosParamCreator = function (configuration?: Configu
/** /**
* *
* @summary 🔖 * @summary 🔖
* @param {string} code * @param {string} value
* @param {number} [status] * @param {number} [status]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
apiSysDictDataDataListGet: async (code: string, status?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => { apiSysDictDataDataListGet: async (value: string, status?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'code' is not null or undefined // verify required parameter 'value' is not null or undefined
if (code === null || code === undefined) { if (value === null || value === undefined) {
throw new RequiredError('code','Required parameter code was null or undefined when calling apiSysDictDataDataListGet.'); throw new RequiredError('value','Required parameter value was null or undefined when calling apiSysDictDataDataListGet.');
} }
const localVarPath = `/api/sysDictData/dataList`; const localVarPath = `/api/sysDictData/dataList`;
// use dummy base URL string because the URL constructor only accepts absolute URLs. // 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; localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
} }
if (code !== undefined) { if (value !== undefined) {
localVarQueryParameter['Code'] = code; localVarQueryParameter['Value'] = value;
} }
if (status !== undefined) { if (status !== undefined) {
@ -527,13 +526,13 @@ export const SysDictDataApiFp = function(configuration?: Configuration) {
/** /**
* *
* @summary 🔖 * @summary 🔖
* @param {string} code * @param {string} value
* @param {number} [status] * @param {number} [status]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
async apiSysDictDataDataListGet(code: string, status?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysDictData>>> { async apiSysDictDataDataListGet(value: string, status?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysDictData>>> {
const localVarAxiosArgs = await SysDictDataApiAxiosParamCreator(configuration).apiSysDictDataDataListGet(code, status, options); const localVarAxiosArgs = await SysDictDataApiAxiosParamCreator(configuration).apiSysDictDataDataListGet(value, status, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => { return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url}; const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs); return axios.request(axiosRequestArgs);
@ -656,13 +655,13 @@ export const SysDictDataApiFactory = function (configuration?: Configuration, ba
/** /**
* *
* @summary 🔖 * @summary 🔖
* @param {string} code * @param {string} value
* @param {number} [status] * @param {number} [status]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
async apiSysDictDataDataListGet(code: string, status?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysDictData>> { async apiSysDictDataDataListGet(value: string, status?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysDictData>> {
return SysDictDataApiFp(configuration).apiSysDictDataDataListGet(code, status, options).then((request) => request(axios, basePath)); return SysDictDataApiFp(configuration).apiSysDictDataDataListGet(value, status, options).then((request) => request(axios, basePath));
}, },
/** /**
* *
@ -760,14 +759,14 @@ export class SysDictDataApi extends BaseAPI {
/** /**
* *
* @summary 🔖 * @summary 🔖
* @param {string} code * @param {string} value
* @param {number} [status] * @param {number} [status]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
* @memberof SysDictDataApi * @memberof SysDictDataApi
*/ */
public async apiSysDictDataDataListGet(code: string, status?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysDictData>> { public async apiSysDictDataDataListGet(value: string, status?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysDictData>> {
return SysDictDataApiFp(this.configuration).apiSysDictDataDataListGet(code, status, options).then((request) => request(this.axios, this.basePath)); 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 * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { StatusEnum } from './status-enum'; import { StatusEnum } from './status-enum';
/** /**
* *
*
* @export * @export
* @interface AddDictDataInput * @interface AddDictDataInput
*/ */
export interface AddDictDataInput { export interface AddDictDataInput {
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
id?: number; id?: number;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
createTime?: Date; createTime?: Date;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
updateTime?: Date | null; updateTime?: Date | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
createUserId?: number | null; createUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
createUserName?: string | null; createUserName?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
updateUserId?: number | null; updateUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
updateUserName?: string | null; updateUserName?: string | null;
/** /**
* *
*
* @type {boolean} * @type {boolean}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
isDelete?: boolean; isDelete?: boolean;
/**
* Id
*
* @type {number}
* @memberof AddDictDataInput
*/
tenantId?: number | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
dictTypeId?: number; dictTypeId?: number;
/**
*
* @type {string}
* @memberof AddDictDataInput
*/
label: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
value: string; value: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
code: string; code?: string | null;
/**
*
*
* @type {string}
* @memberof AddDictDataInput
*/
name?: string | null;
/** /**
* - * -
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
tagType?: string | null; tagType?: string | null;
/** /**
* -Style() * -Style()
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
styleSetting?: string | null; styleSetting?: string | null;
/** /**
* -Class() * -Class()
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
classSetting?: string | null; classSetting?: string | null;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
orderNo?: number; orderNo?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
remark?: string | null; remark?: string | null;
/** /**
* () * ()
*
* @type {string} * @type {string}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */
extData?: string | null; extData?: string | null;
/** /**
*
* @type {StatusEnum} * @type {StatusEnum}
* @memberof AddDictDataInput * @memberof AddDictDataInput
*/ */

View File

@ -11,129 +11,107 @@
* https://github.com/swagger-api/swagger-codegen.git * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { StatusEnum } from './status-enum'; import { StatusEnum } from './status-enum';
import { SysDictData } from './sys-dict-data'; import { SysDictData } from './sys-dict-data';
import { YesNoEnum } from './yes-no-enum'; import { YesNoEnum } from './yes-no-enum';
/** /**
* *
*
* @export * @export
* @interface AddDictTypeInput * @interface AddDictTypeInput
*/ */
export interface AddDictTypeInput { export interface AddDictTypeInput {
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
id?: number; id?: number;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
createTime?: Date; createTime?: Date;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
updateTime?: Date | null; updateTime?: Date | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
createUserId?: number | null; createUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
createUserName?: string | null; createUserName?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
updateUserId?: number | null; updateUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
updateUserName?: string | null; updateUserName?: string | null;
/** /**
* *
*
* @type {boolean} * @type {boolean}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
isDelete?: boolean; isDelete?: boolean;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
name: string; name: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
code: string; code: string;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
orderNo?: number; orderNo?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
remark?: string | null; remark?: string | null;
/** /**
*
* @type {StatusEnum} * @type {StatusEnum}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
status?: StatusEnum; status?: StatusEnum;
/**
*
* @type {YesNoEnum}
* @memberof AddDictTypeInput
*/
isTenant?: YesNoEnum;
/** /**
* *
*
* @type {Array<SysDictData>} * @type {Array<SysDictData>}
* @memberof AddDictTypeInput * @memberof AddDictTypeInput
*/ */
children?: Array<SysDictData> | null; children?: Array<SysDictData> | null;
/** /**
*
* @type {YesNoEnum} * @type {YesNoEnum}
* @memberof AddDictTypeInput * @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 * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { Filter } from './filter'; import { Filter } from './filter';
import { Search } from './search'; import { Search } from './search';
/** /**
* *
*
* @export * @export
* @interface PageDictDataInput * @interface PageDictDataInput
*/ */
export interface PageDictDataInput { export interface PageDictDataInput {
/** /**
*
* @type {Search} * @type {Search}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
search?: Search; search?: Search;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
keyword?: string | null; keyword?: string | null;
/** /**
*
* @type {Filter} * @type {Filter}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
filter?: Filter; filter?: Filter;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
page?: number; page?: number;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
pageSize?: number; pageSize?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
field?: string | null; field?: string | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
order?: string | null; order?: string | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
descStr?: string | null; descStr?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
dictTypeId?: number; dictTypeId?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof PageDictDataInput * @memberof PageDictDataInput
*/ */
value?: string | null; label?: string | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof PageDictDataInput * @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 * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { StatusEnum } from './status-enum'; import { StatusEnum } from './status-enum';
/** /**
* *
*
* @export * @export
* @interface SysDictData * @interface SysDictData
*/ */
export interface SysDictData { export interface SysDictData {
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictData * @memberof SysDictData
*/ */
id?: number; id?: number;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof SysDictData * @memberof SysDictData
*/ */
createTime?: Date; createTime?: Date;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof SysDictData * @memberof SysDictData
*/ */
updateTime?: Date | null; updateTime?: Date | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictData * @memberof SysDictData
*/ */
createUserId?: number | null; createUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
createUserName?: string | null; createUserName?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictData * @memberof SysDictData
*/ */
updateUserId?: number | null; updateUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
updateUserName?: string | null; updateUserName?: string | null;
/** /**
* *
*
* @type {boolean} * @type {boolean}
* @memberof SysDictData * @memberof SysDictData
*/ */
isDelete?: boolean; isDelete?: boolean;
/**
* Id
*
* @type {number}
* @memberof SysDictData
*/
tenantId?: number | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictData * @memberof SysDictData
*/ */
dictTypeId?: number; dictTypeId?: number;
/**
*
* @type {string}
* @memberof SysDictData
*/
label: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
value: string; value: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
code: string; code?: string | null;
/**
*
*
* @type {string}
* @memberof SysDictData
*/
name?: string | null;
/** /**
* - * -
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
tagType?: string | null; tagType?: string | null;
/** /**
* -Style() * -Style()
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
styleSetting?: string | null; styleSetting?: string | null;
/** /**
* -Class() * -Class()
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
classSetting?: string | null; classSetting?: string | null;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof SysDictData * @memberof SysDictData
*/ */
orderNo?: number; orderNo?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
remark?: string | null; remark?: string | null;
/** /**
* () * ()
*
* @type {string} * @type {string}
* @memberof SysDictData * @memberof SysDictData
*/ */
extData?: string | null; extData?: string | null;
/** /**
*
* @type {StatusEnum} * @type {StatusEnum}
* @memberof SysDictData * @memberof SysDictData
*/ */

View File

@ -11,129 +11,107 @@
* https://github.com/swagger-api/swagger-codegen.git * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { StatusEnum } from './status-enum'; import { StatusEnum } from './status-enum';
import { SysDictData } from './sys-dict-data'; import { SysDictData } from './sys-dict-data';
import { YesNoEnum } from './yes-no-enum'; import { YesNoEnum } from './yes-no-enum';
/** /**
* *
*
* @export * @export
* @interface SysDictType * @interface SysDictType
*/ */
export interface SysDictType { export interface SysDictType {
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictType * @memberof SysDictType
*/ */
id?: number; id?: number;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof SysDictType * @memberof SysDictType
*/ */
createTime?: Date; createTime?: Date;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof SysDictType * @memberof SysDictType
*/ */
updateTime?: Date | null; updateTime?: Date | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictType * @memberof SysDictType
*/ */
createUserId?: number | null; createUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictType * @memberof SysDictType
*/ */
createUserName?: string | null; createUserName?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof SysDictType * @memberof SysDictType
*/ */
updateUserId?: number | null; updateUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictType * @memberof SysDictType
*/ */
updateUserName?: string | null; updateUserName?: string | null;
/** /**
* *
*
* @type {boolean} * @type {boolean}
* @memberof SysDictType * @memberof SysDictType
*/ */
isDelete?: boolean; isDelete?: boolean;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictType * @memberof SysDictType
*/ */
name: string; name: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictType * @memberof SysDictType
*/ */
code: string; code: string;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof SysDictType * @memberof SysDictType
*/ */
orderNo?: number; orderNo?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof SysDictType * @memberof SysDictType
*/ */
remark?: string | null; remark?: string | null;
/** /**
*
* @type {StatusEnum} * @type {StatusEnum}
* @memberof SysDictType * @memberof SysDictType
*/ */
status?: StatusEnum; status?: StatusEnum;
/** /**
*
* @type {YesNoEnum} * @type {YesNoEnum}
* @memberof SysDictType * @memberof SysDictType
*/ */
sysFlag?: YesNoEnum; sysFlag?: YesNoEnum;
/**
*
* @type {YesNoEnum}
* @memberof SysDictType
*/
isTenant?: YesNoEnum;
/** /**
* *
*
* @type {Array<SysDictData>} * @type {Array<SysDictData>}
* @memberof SysDictType * @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 * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { StatusEnum } from './status-enum'; import { StatusEnum } from './status-enum';
/** /**
* *
*
* @export * @export
* @interface UpdateDictDataInput * @interface UpdateDictDataInput
*/ */
export interface UpdateDictDataInput { export interface UpdateDictDataInput {
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
id?: number; id?: number;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
createTime?: Date; createTime?: Date;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
updateTime?: Date | null; updateTime?: Date | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
createUserId?: number | null; createUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
createUserName?: string | null; createUserName?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
updateUserId?: number | null; updateUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
updateUserName?: string | null; updateUserName?: string | null;
/** /**
* *
*
* @type {boolean} * @type {boolean}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
isDelete?: boolean; isDelete?: boolean;
/**
* Id
*
* @type {number}
* @memberof UpdateDictDataInput
*/
tenantId?: number | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
dictTypeId?: number; dictTypeId?: number;
/**
*
* @type {string}
* @memberof UpdateDictDataInput
*/
label: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
value: string; value: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
code: string; code?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateDictDataInput
*/
name?: string | null;
/** /**
* - * -
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
tagType?: string | null; tagType?: string | null;
/** /**
* -Style() * -Style()
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
styleSetting?: string | null; styleSetting?: string | null;
/** /**
* -Class() * -Class()
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
classSetting?: string | null; classSetting?: string | null;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
orderNo?: number; orderNo?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
remark?: string | null; remark?: string | null;
/** /**
* () * ()
*
* @type {string} * @type {string}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */
extData?: string | null; extData?: string | null;
/** /**
*
* @type {StatusEnum} * @type {StatusEnum}
* @memberof UpdateDictDataInput * @memberof UpdateDictDataInput
*/ */

View File

@ -11,129 +11,107 @@
* https://github.com/swagger-api/swagger-codegen.git * https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually. * Do not edit the class manually.
*/ */
import { StatusEnum } from './status-enum'; import { StatusEnum } from './status-enum';
import { SysDictData } from './sys-dict-data'; import { SysDictData } from './sys-dict-data';
import { YesNoEnum } from './yes-no-enum'; import { YesNoEnum } from './yes-no-enum';
/** /**
* *
*
* @export * @export
* @interface UpdateDictTypeInput * @interface UpdateDictTypeInput
*/ */
export interface UpdateDictTypeInput { export interface UpdateDictTypeInput {
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
id?: number; id?: number;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
createTime?: Date; createTime?: Date;
/** /**
* *
*
* @type {Date} * @type {Date}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
updateTime?: Date | null; updateTime?: Date | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
createUserId?: number | null; createUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
createUserName?: string | null; createUserName?: string | null;
/** /**
* Id * Id
*
* @type {number} * @type {number}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
updateUserId?: number | null; updateUserId?: number | null;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
updateUserName?: string | null; updateUserName?: string | null;
/** /**
* *
*
* @type {boolean} * @type {boolean}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
isDelete?: boolean; isDelete?: boolean;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
name: string; name: string;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
code: string; code: string;
/** /**
* *
*
* @type {number} * @type {number}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
orderNo?: number; orderNo?: number;
/** /**
* *
*
* @type {string} * @type {string}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
remark?: string | null; remark?: string | null;
/** /**
*
* @type {StatusEnum} * @type {StatusEnum}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
status?: StatusEnum; status?: StatusEnum;
/**
*
* @type {YesNoEnum}
* @memberof UpdateDictTypeInput
*/
isTenant?: YesNoEnum;
/** /**
* *
*
* @type {Array<SysDictData>} * @type {Array<SysDictData>}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */
children?: Array<SysDictData> | null; children?: Array<SysDictData> | null;
/** /**
*
* @type {YesNoEnum} * @type {YesNoEnum}
* @memberof UpdateDictTypeInput * @memberof UpdateDictTypeInput
*/ */