UNIVPLMDataIntegration/Web/src/api-services/models/admin-result-sys-log-ex.ts

70 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-07-01 10:37:39 +08:00
/* 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 { SysLogEx } from './sys-log-ex';
/**
*
*
* @export
* @interface AdminResultSysLogEx
*/
export interface AdminResultSysLogEx {
/**
*
*
* @type {number}
* @memberof AdminResultSysLogEx
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminResultSysLogEx
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminResultSysLogEx
*/
message?: string | null;
/**
* @type {SysLogEx}
* @memberof AdminResultSysLogEx
*/
result?: SysLogEx;
/**
*
*
* @type {any}
* @memberof AdminResultSysLogEx
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminResultSysLogEx
*/
time?: Date;
}