🍎 build: 生成前端Api代码

This commit is contained in:
喵你个汪呀 2025-08-24 22:42:40 +08:00
parent 8e9412aee5
commit aceb93736f
18 changed files with 406 additions and 291 deletions

View File

@ -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

View File

@ -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));
}
/**
*

View File

@ -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;
}

View File

@ -131,6 +131,12 @@ export interface AddDictTypeInput {
*/
isTenant?: YesNoEnum;
/**
* @type {YesNoEnum}
* @memberof AddDictTypeInput
*/
isEnum?: YesNoEnum;
/**
*
*

View File

@ -36,6 +36,14 @@ export interface ConstOutput {
*/
code?: any | null;
/**
*
*
* @type {string}
* @memberof ConstOutput
*/
desc?: string | null;
/**
*
*

View File

@ -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;
/**
*
*

View File

@ -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;
/**
*
*

View File

@ -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;
}

View File

@ -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;
}

View File

@ -137,6 +137,12 @@ export interface SysDictType {
*/
isTenant?: YesNoEnum;
/**
* @type {YesNoEnum}
* @memberof SysDictType
*/
isEnum?: YesNoEnum;
/**
*
*

View File

@ -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;
}

View File

@ -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;
/**
*
*

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
/**
*
*

View File

@ -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;
}

View File

@ -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;
}

View File

@ -131,6 +131,12 @@ export interface UpdateDictTypeInput {
*/
isTenant?: YesNoEnum;
/**
* @type {YesNoEnum}
* @memberof UpdateDictTypeInput
*/
isEnum?: YesNoEnum;
/**
*
*