/* 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 { AddTenantInput } from '../models';
|
import { AdminResultInt32 } from '../models';
|
import { AdminResultListInt64 } from '../models';
|
import { AdminResultListSysUser } from '../models';
|
import { AdminResultLoginOutput } from '../models';
|
import { AdminResultObject } from '../models';
|
import { AdminResultSqlSugarPagedListTenantOutput } from '../models';
|
import { AdminResultString } from '../models';
|
import { BaseIdInput } from '../models';
|
import { DeleteTenantInput } from '../models';
|
import { PageTenantInput } from '../models';
|
import { TenantIdInput } from '../models';
|
import { TenantInput } from '../models';
|
import { TenantMenuInput } from '../models';
|
import { TenantUserInput } from '../models';
|
import { UpdateTenantInput } from '../models';
|
/**
|
* SysTenantApi - axios parameter creator
|
* @export
|
*/
|
export const SysTenantApiAxiosParamCreator = function (configuration?: Configuration) {
|
return {
|
/**
|
*
|
* @summary 增加租户 🔖
|
* @param {AddTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantAddPost: async (body?: AddTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/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 {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantChangeTenantPost: async (body?: BaseIdInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/changeTenant`;
|
// 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 {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantCreateDbPost: async (body?: TenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/createDb`;
|
// 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 {DeleteTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantDeletePost: async (body?: DeleteTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/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 {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantGoTenantPost: async (body?: BaseIdInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/goTenant`;
|
// 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 {TenantMenuInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantGrantMenuPost: async (body?: TenantMenuInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/grantMenu`;
|
// 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 {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantListGet: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/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: '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 {PageTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantPagePost: async (body?: PageTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/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 {TenantUserInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantResetPwdPost: async (body?: TenantUserInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/resetPwd`;
|
// 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 {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantSetStatusPost: async (body?: TenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/setStatus`;
|
// 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 {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantSyncGrantMenuPost: async (body?: BaseIdInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/syncGrantMenu`;
|
// 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 获取租户菜单Id集合 🔖
|
* @param {number} id 主键Id
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantTenantMenuListGet: 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 apiSysTenantTenantMenuListGet.');
|
}
|
const localVarPath = `/api/sysTenant/tenantMenuList`;
|
// 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 {UpdateTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantUpdatePost: async (body?: UpdateTenantInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/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,
|
};
|
},
|
/**
|
*
|
* @summary 获取租户下的用户列表 🔖
|
* @param {TenantIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
apiSysTenantUserListPost: async (body?: TenantIdInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
const localVarPath = `/api/sysTenant/userList`;
|
// 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,
|
};
|
},
|
}
|
};
|
|
/**
|
* SysTenantApi - functional programming interface
|
* @export
|
*/
|
export const SysTenantApiFp = function(configuration?: Configuration) {
|
return {
|
/**
|
*
|
* @summary 增加租户 🔖
|
* @param {AddTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantAddPost(body?: AddTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantAddPost(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 {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantChangeTenantPost(body?: BaseIdInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultLoginOutput>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantChangeTenantPost(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 {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantCreateDbPost(body?: TenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantCreateDbPost(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 {DeleteTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantDeletePost(body?: DeleteTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantDeletePost(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 {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantGoTenantPost(body?: BaseIdInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultLoginOutput>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantGoTenantPost(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 {TenantMenuInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantGrantMenuPost(body?: TenantMenuInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantGrantMenuPost(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 {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantListGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultObject>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantListGet(options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 获取租户分页列表 🔖
|
* @param {PageTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantPagePost(body?: PageTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultSqlSugarPagedListTenantOutput>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantPagePost(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 {TenantUserInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantResetPwdPost(body?: TenantUserInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultString>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantResetPwdPost(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 {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantSetStatusPost(body?: TenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultInt32>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantSetStatusPost(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 {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantSyncGrantMenuPost(body?: BaseIdInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantSyncGrantMenuPost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
/**
|
*
|
* @summary 获取租户菜单Id集合 🔖
|
* @param {number} id 主键Id
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantTenantMenuListGet(id: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultListInt64>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantTenantMenuListGet(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 {UpdateTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantUpdatePost(body?: UpdateTenantInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantUpdatePost(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 {TenantIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantUserListPost(body?: TenantIdInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultListSysUser>>> {
|
const localVarAxiosArgs = await SysTenantApiAxiosParamCreator(configuration).apiSysTenantUserListPost(body, options);
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
return axios.request(axiosRequestArgs);
|
};
|
},
|
}
|
};
|
|
/**
|
* SysTenantApi - factory interface
|
* @export
|
*/
|
export const SysTenantApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
return {
|
/**
|
*
|
* @summary 增加租户 🔖
|
* @param {AddTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantAddPost(body?: AddTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(configuration).apiSysTenantAddPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 切换租户 🔖
|
* @param {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantChangeTenantPost(body?: BaseIdInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultLoginOutput>> {
|
return SysTenantApiFp(configuration).apiSysTenantChangeTenantPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 创建租户数据库 🔖
|
* @param {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantCreateDbPost(body?: TenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(configuration).apiSysTenantCreateDbPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 删除租户 🔖
|
* @param {DeleteTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantDeletePost(body?: DeleteTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(configuration).apiSysTenantDeletePost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 进入租管端 🔖
|
* @param {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantGoTenantPost(body?: BaseIdInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultLoginOutput>> {
|
return SysTenantApiFp(configuration).apiSysTenantGoTenantPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 授权租户菜单 🔖
|
* @param {TenantMenuInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantGrantMenuPost(body?: TenantMenuInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(configuration).apiSysTenantGrantMenuPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取租户列表
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantListGet(options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultObject>> {
|
return SysTenantApiFp(configuration).apiSysTenantListGet(options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取租户分页列表 🔖
|
* @param {PageTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantPagePost(body?: PageTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultSqlSugarPagedListTenantOutput>> {
|
return SysTenantApiFp(configuration).apiSysTenantPagePost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 重置租户管理员密码 🔖
|
* @param {TenantUserInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantResetPwdPost(body?: TenantUserInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultString>> {
|
return SysTenantApiFp(configuration).apiSysTenantResetPwdPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 设置租户状态 🔖
|
* @param {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantSetStatusPost(body?: TenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultInt32>> {
|
return SysTenantApiFp(configuration).apiSysTenantSetStatusPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 同步授权菜单(用于版本更新后,同步授权数据) 🔖
|
* @param {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantSyncGrantMenuPost(body?: BaseIdInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(configuration).apiSysTenantSyncGrantMenuPost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取租户菜单Id集合 🔖
|
* @param {number} id 主键Id
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantTenantMenuListGet(id: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultListInt64>> {
|
return SysTenantApiFp(configuration).apiSysTenantTenantMenuListGet(id, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 更新租户 🔖
|
* @param {UpdateTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantUpdatePost(body?: UpdateTenantInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(configuration).apiSysTenantUpdatePost(body, options).then((request) => request(axios, basePath));
|
},
|
/**
|
*
|
* @summary 获取租户下的用户列表 🔖
|
* @param {TenantIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
*/
|
async apiSysTenantUserListPost(body?: TenantIdInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultListSysUser>> {
|
return SysTenantApiFp(configuration).apiSysTenantUserListPost(body, options).then((request) => request(axios, basePath));
|
},
|
};
|
};
|
|
/**
|
* SysTenantApi - object-oriented interface
|
* @export
|
* @class SysTenantApi
|
* @extends {BaseAPI}
|
*/
|
export class SysTenantApi extends BaseAPI {
|
/**
|
*
|
* @summary 增加租户 🔖
|
* @param {AddTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantAddPost(body?: AddTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantAddPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 切换租户 🔖
|
* @param {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantChangeTenantPost(body?: BaseIdInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultLoginOutput>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantChangeTenantPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 创建租户数据库 🔖
|
* @param {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantCreateDbPost(body?: TenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantCreateDbPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 删除租户 🔖
|
* @param {DeleteTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantDeletePost(body?: DeleteTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantDeletePost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 进入租管端 🔖
|
* @param {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantGoTenantPost(body?: BaseIdInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultLoginOutput>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantGoTenantPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 授权租户菜单 🔖
|
* @param {TenantMenuInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantGrantMenuPost(body?: TenantMenuInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantGrantMenuPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取租户列表
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantListGet(options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultObject>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantListGet(options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取租户分页列表 🔖
|
* @param {PageTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantPagePost(body?: PageTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultSqlSugarPagedListTenantOutput>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantPagePost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 重置租户管理员密码 🔖
|
* @param {TenantUserInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantResetPwdPost(body?: TenantUserInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultString>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantResetPwdPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 设置租户状态 🔖
|
* @param {TenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantSetStatusPost(body?: TenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultInt32>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantSetStatusPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 同步授权菜单(用于版本更新后,同步授权数据) 🔖
|
* @param {BaseIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantSyncGrantMenuPost(body?: BaseIdInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantSyncGrantMenuPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取租户菜单Id集合 🔖
|
* @param {number} id 主键Id
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantTenantMenuListGet(id: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultListInt64>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantTenantMenuListGet(id, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 更新租户 🔖
|
* @param {UpdateTenantInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantUpdatePost(body?: UpdateTenantInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantUpdatePost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
/**
|
*
|
* @summary 获取租户下的用户列表 🔖
|
* @param {TenantIdInput} [body]
|
* @param {*} [options] Override http request option.
|
* @throws {RequiredError}
|
* @memberof SysTenantApi
|
*/
|
public async apiSysTenantUserListPost(body?: TenantIdInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultListSysUser>> {
|
return SysTenantApiFp(this.configuration).apiSysTenantUserListPost(body, options).then((request) => request(this.axios, this.basePath));
|
}
|
}
|