🍎 build: 生成前端Api代码
This commit is contained in:
parent
8e9412aee5
commit
aceb93736f
@ -373,7 +373,7 @@ export const SysAuthApiAxiosParamCreator = function (configuration?: Configurati
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取登录账号 🔖
|
||||
* @summary 获取当前登陆用户信息 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -521,7 +521,7 @@ export const SysAuthApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取登录账号 🔖
|
||||
* @summary 获取当前登陆用户信息 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -611,7 +611,7 @@ export const SysAuthApiFactory = function (configuration?: Configuration, basePa
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取登录账号 🔖
|
||||
* @summary 获取当前登陆用户信息 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -705,7 +705,7 @@ export class SysAuthApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 获取登录账号 🔖
|
||||
* @summary 获取当前登陆用户信息 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof SysAuthApi
|
||||
|
||||
@ -18,6 +18,7 @@ import { Configuration } from '../configuration';
|
||||
// @ts-ignore
|
||||
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
||||
import { AdminNETResultListStatLogOutput } from '../models';
|
||||
import { AdminNETResultListString } from '../models';
|
||||
import { AdminNETResultListSysLogHttp } from '../models';
|
||||
import { AdminNETResultSqlSugarPagedListPageLogHttpOutput } from '../models';
|
||||
import { AdminNETResultSysLogHttp } from '../models';
|
||||
@ -133,10 +134,56 @@ export const SysLogHttpApiAxiosParamCreator = function (configuration?: Configur
|
||||
options: localVarRequestOptions,
|
||||
};
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取客户端名称集 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiSysLogHttpHttpClientNameGet: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
const localVarPath = `/api/sysLogHttp/httpClientName`;
|
||||
// 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 {string} [searchKey] 关键字查询
|
||||
* @param {string} [actionName] 模块名称
|
||||
* @param {string} [httpClientName] 客户端名称
|
||||
* @param {string} [httpApiDesc] 请求接口描述
|
||||
* @param {string} [httpMethod] 请求方式
|
||||
* @param {YesNoEnum} [isSuccessStatusCode] 是否成功
|
||||
* @param {string} [requestUrl] 请求地址
|
||||
@ -162,7 +209,7 @@ export const SysLogHttpApiAxiosParamCreator = function (configuration?: Configur
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
apiSysLogHttpListGet: async (searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
apiSysLogHttpListGet: async (searchKey?: string, actionName?: string, httpClientName?: string, httpApiDesc?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
const localVarPath = `/api/sysLogHttp/list`;
|
||||
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
||||
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
||||
@ -187,6 +234,18 @@ export const SysLogHttpApiAxiosParamCreator = function (configuration?: Configur
|
||||
localVarQueryParameter['SearchKey'] = searchKey;
|
||||
}
|
||||
|
||||
if (actionName !== undefined) {
|
||||
localVarQueryParameter['ActionName'] = actionName;
|
||||
}
|
||||
|
||||
if (httpClientName !== undefined) {
|
||||
localVarQueryParameter['HttpClientName'] = httpClientName;
|
||||
}
|
||||
|
||||
if (httpApiDesc !== undefined) {
|
||||
localVarQueryParameter['HttpApiDesc'] = httpApiDesc;
|
||||
}
|
||||
|
||||
if (httpMethod !== undefined) {
|
||||
localVarQueryParameter['HttpMethod'] = httpMethod;
|
||||
}
|
||||
@ -421,10 +480,26 @@ export const SysLogHttpApiFp = function(configuration?: Configuration) {
|
||||
return axios.request(axiosRequestArgs);
|
||||
};
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取客户端名称集 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async apiSysLogHttpHttpClientNameGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListString>>> {
|
||||
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpHttpClientNameGet(options);
|
||||
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
||||
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
||||
return axios.request(axiosRequestArgs);
|
||||
};
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取请求日志列表 🔖
|
||||
* @param {string} [searchKey] 关键字查询
|
||||
* @param {string} [actionName] 模块名称
|
||||
* @param {string} [httpClientName] 客户端名称
|
||||
* @param {string} [httpApiDesc] 请求接口描述
|
||||
* @param {string} [httpMethod] 请求方式
|
||||
* @param {YesNoEnum} [isSuccessStatusCode] 是否成功
|
||||
* @param {string} [requestUrl] 请求地址
|
||||
@ -450,8 +525,8 @@ export const SysLogHttpApiFp = function(configuration?: Configuration) {
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async apiSysLogHttpListGet(searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysLogHttp>>> {
|
||||
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpListGet(searchKey, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options);
|
||||
async apiSysLogHttpListGet(searchKey?: string, actionName?: string, httpClientName?: string, httpApiDesc?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysLogHttp>>> {
|
||||
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpListGet(searchKey, actionName, httpClientName, httpApiDesc, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options);
|
||||
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
||||
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
||||
return axios.request(axiosRequestArgs);
|
||||
@ -513,10 +588,22 @@ export const SysLogHttpApiFactory = function (configuration?: Configuration, bas
|
||||
async apiSysLogHttpExportPost(body?: ExportLogHttpInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
||||
return SysLogHttpApiFp(configuration).apiSysLogHttpExportPost(body, options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取客户端名称集 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async apiSysLogHttpHttpClientNameGet(options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListString>> {
|
||||
return SysLogHttpApiFp(configuration).apiSysLogHttpHttpClientNameGet(options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取请求日志列表 🔖
|
||||
* @param {string} [searchKey] 关键字查询
|
||||
* @param {string} [actionName] 模块名称
|
||||
* @param {string} [httpClientName] 客户端名称
|
||||
* @param {string} [httpApiDesc] 请求接口描述
|
||||
* @param {string} [httpMethod] 请求方式
|
||||
* @param {YesNoEnum} [isSuccessStatusCode] 是否成功
|
||||
* @param {string} [requestUrl] 请求地址
|
||||
@ -542,8 +629,8 @@ export const SysLogHttpApiFactory = function (configuration?: Configuration, bas
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async apiSysLogHttpListGet(searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysLogHttp>> {
|
||||
return SysLogHttpApiFp(configuration).apiSysLogHttpListGet(searchKey, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options).then((request) => request(axios, basePath));
|
||||
async apiSysLogHttpListGet(searchKey?: string, actionName?: string, httpClientName?: string, httpApiDesc?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysLogHttp>> {
|
||||
return SysLogHttpApiFp(configuration).apiSysLogHttpListGet(searchKey, actionName, httpClientName, httpApiDesc, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
*
|
||||
@ -596,10 +683,23 @@ export class SysLogHttpApi extends BaseAPI {
|
||||
public async apiSysLogHttpExportPost(body?: ExportLogHttpInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
||||
return SysLogHttpApiFp(this.configuration).apiSysLogHttpExportPost(body, options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 获取客户端名称集 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof SysLogHttpApi
|
||||
*/
|
||||
public async apiSysLogHttpHttpClientNameGet(options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListString>> {
|
||||
return SysLogHttpApiFp(this.configuration).apiSysLogHttpHttpClientNameGet(options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 获取请求日志列表 🔖
|
||||
* @param {string} [searchKey] 关键字查询
|
||||
* @param {string} [actionName] 模块名称
|
||||
* @param {string} [httpClientName] 客户端名称
|
||||
* @param {string} [httpApiDesc] 请求接口描述
|
||||
* @param {string} [httpMethod] 请求方式
|
||||
* @param {YesNoEnum} [isSuccessStatusCode] 是否成功
|
||||
* @param {string} [requestUrl] 请求地址
|
||||
@ -626,8 +726,8 @@ export class SysLogHttpApi extends BaseAPI {
|
||||
* @throws {RequiredError}
|
||||
* @memberof SysLogHttpApi
|
||||
*/
|
||||
public async apiSysLogHttpListGet(searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysLogHttp>> {
|
||||
return SysLogHttpApiFp(this.configuration).apiSysLogHttpListGet(searchKey, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options).then((request) => request(this.axios, this.basePath));
|
||||
public async apiSysLogHttpListGet(searchKey?: string, actionName?: string, httpClientName?: string, httpApiDesc?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysLogHttp>> {
|
||||
return SysLogHttpApiFp(this.configuration).apiSysLogHttpListGet(searchKey, actionName, httpClientName, httpApiDesc, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
/**
|
||||
*
|
||||
|
||||
@ -13,6 +13,7 @@
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
*
|
||||
*
|
||||
@ -170,4 +171,10 @@ export interface AddDictDataInput {
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
status?: StatusEnum;
|
||||
|
||||
/**
|
||||
* @type {YesNoEnum}
|
||||
* @memberof AddDictDataInput
|
||||
*/
|
||||
isEnum?: YesNoEnum;
|
||||
}
|
||||
|
||||
@ -131,6 +131,12 @@ export interface AddDictTypeInput {
|
||||
*/
|
||||
isTenant?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* @type {YesNoEnum}
|
||||
* @memberof AddDictTypeInput
|
||||
*/
|
||||
isEnum?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 字典值集合
|
||||
*
|
||||
|
||||
@ -36,6 +36,14 @@ export interface ConstOutput {
|
||||
*/
|
||||
code?: any | null;
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ConstOutput
|
||||
*/
|
||||
desc?: string | null;
|
||||
|
||||
/**
|
||||
* 扩展字段
|
||||
*
|
||||
|
||||
@ -91,6 +91,30 @@ export interface ExportLogHttpInput {
|
||||
*/
|
||||
searchKey?: string | null;
|
||||
|
||||
/**
|
||||
* 模块名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ExportLogHttpInput
|
||||
*/
|
||||
actionName?: string | null;
|
||||
|
||||
/**
|
||||
* 客户端名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ExportLogHttpInput
|
||||
*/
|
||||
httpClientName?: string | null;
|
||||
|
||||
/**
|
||||
* 请求接口描述
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ExportLogHttpInput
|
||||
*/
|
||||
httpApiDesc?: string | null;
|
||||
|
||||
/**
|
||||
* 请求方式
|
||||
*
|
||||
|
||||
@ -91,6 +91,30 @@ export interface PageLogHttpInput {
|
||||
*/
|
||||
searchKey?: string | null;
|
||||
|
||||
/**
|
||||
* 模块名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpInput
|
||||
*/
|
||||
actionName?: string | null;
|
||||
|
||||
/**
|
||||
* 客户端名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpInput
|
||||
*/
|
||||
httpClientName?: string | null;
|
||||
|
||||
/**
|
||||
* 请求接口描述
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpInput
|
||||
*/
|
||||
httpApiDesc?: string | null;
|
||||
|
||||
/**
|
||||
* 请求方式
|
||||
*
|
||||
|
||||
@ -29,6 +29,30 @@ export interface PageLogHttpOutput {
|
||||
*/
|
||||
id?: number | null;
|
||||
|
||||
/**
|
||||
* 请求模块
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpOutput
|
||||
*/
|
||||
actionName?: string | null;
|
||||
|
||||
/**
|
||||
* 客户端名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpOutput
|
||||
*/
|
||||
httpClientName?: string | null;
|
||||
|
||||
/**
|
||||
* 请求接口描述
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpOutput
|
||||
*/
|
||||
httpApiDesc?: string | null;
|
||||
|
||||
/**
|
||||
* 请求方式
|
||||
*
|
||||
@ -130,4 +154,12 @@ export interface PageLogHttpOutput {
|
||||
* @memberof PageLogHttpOutput
|
||||
*/
|
||||
createTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建用户
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof PageLogHttpOutput
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
}
|
||||
|
||||
@ -13,6 +13,7 @@
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
* 系统字典值表
|
||||
*
|
||||
@ -170,4 +171,10 @@ export interface SysDictData {
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
status?: StatusEnum;
|
||||
|
||||
/**
|
||||
* @type {YesNoEnum}
|
||||
* @memberof SysDictData
|
||||
*/
|
||||
isEnum?: YesNoEnum;
|
||||
}
|
||||
|
||||
@ -137,6 +137,12 @@ export interface SysDictType {
|
||||
*/
|
||||
isTenant?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* @type {YesNoEnum}
|
||||
* @memberof SysDictType
|
||||
*/
|
||||
isEnum?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 字典值集合
|
||||
*
|
||||
|
||||
@ -28,62 +28,6 @@ export interface SysLogDiff {
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
@ -147,4 +91,28 @@ export interface SysLogDiff {
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
elapsed?: number | null;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogDiff
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
}
|
||||
|
||||
@ -29,62 +29,6 @@ export interface SysLogEx {
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
@ -211,6 +155,30 @@ export interface SysLogEx {
|
||||
*/
|
||||
realName?: string | null;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogEx
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 请求方式
|
||||
*
|
||||
|
||||
@ -30,6 +30,30 @@ export interface SysLogHttp {
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
tenantId?: number | null;
|
||||
|
||||
/**
|
||||
* 客户端名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
httpClientName?: string | null;
|
||||
|
||||
/**
|
||||
* 接口描述
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
httpApiDesc?: string | null;
|
||||
|
||||
/**
|
||||
* 请求方式
|
||||
*
|
||||
@ -44,6 +68,14 @@ export interface SysLogHttp {
|
||||
*/
|
||||
isSuccessStatusCode?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 模块名称
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
actionName?: string | null;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*
|
||||
@ -129,4 +161,20 @@ export interface SysLogHttp {
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogHttp
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
}
|
||||
|
||||
@ -28,62 +28,6 @@ export interface SysLogMsg {
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
@ -227,4 +171,28 @@ export interface SysLogMsg {
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
sendDevice?: string | null;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogMsg
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
}
|
||||
|
||||
@ -29,62 +29,6 @@ export interface SysLogOp {
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
@ -211,6 +155,30 @@ export interface SysLogOp {
|
||||
*/
|
||||
realName?: string | null;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogOp
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 请求方式
|
||||
*
|
||||
|
||||
@ -29,62 +29,6 @@ export interface SysLogVis {
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
updateTime?: Date | null;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 修改者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
updateUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 修改者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
updateUserName?: string | null;
|
||||
|
||||
/**
|
||||
* 软删除
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
isDelete?: boolean;
|
||||
|
||||
/**
|
||||
* 租户Id
|
||||
*
|
||||
@ -210,4 +154,28 @@ export interface SysLogVis {
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
realName?: string | null;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*
|
||||
* @type {Date}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
createTime?: Date;
|
||||
|
||||
/**
|
||||
* 创建者Id
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
createUserId?: number | null;
|
||||
|
||||
/**
|
||||
* 创建者姓名
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SysLogVis
|
||||
*/
|
||||
createUserName?: string | null;
|
||||
}
|
||||
|
||||
@ -13,6 +13,7 @@
|
||||
*/
|
||||
|
||||
import { StatusEnum } from './status-enum';
|
||||
import { YesNoEnum } from './yes-no-enum';
|
||||
/**
|
||||
*
|
||||
*
|
||||
@ -170,4 +171,10 @@ export interface UpdateDictDataInput {
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
status?: StatusEnum;
|
||||
|
||||
/**
|
||||
* @type {YesNoEnum}
|
||||
* @memberof UpdateDictDataInput
|
||||
*/
|
||||
isEnum?: YesNoEnum;
|
||||
}
|
||||
|
||||
@ -131,6 +131,12 @@ export interface UpdateDictTypeInput {
|
||||
*/
|
||||
isTenant?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* @type {YesNoEnum}
|
||||
* @memberof UpdateDictTypeInput
|
||||
*/
|
||||
isEnum?: YesNoEnum;
|
||||
|
||||
/**
|
||||
* 字典值集合
|
||||
*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user