UNIVPLMDataIntegration/Web/src/api-services/models/sys-app-output.ts

167 lines
2.9 KiB
TypeScript
Raw Normal View History

2024-11-25 16:27:14 +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.
*/
/**
*
*
* @export
* @interface SysAppOutput
*/
export interface SysAppOutput {
/**
* Id
*
* @type {number}
* @memberof SysAppOutput
*/
id?: number;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
name?: string | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
logo?: string | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
title?: string | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
viceTitle?: string | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
viceDesc?: string | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
watermark?: string | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
copyright?: string | null;
/**
* ICP备案号
*
* @type {string}
* @memberof SysAppOutput
*/
icp?: string | null;
/**
*
*
* @type {number}
* @memberof SysAppOutput
*/
orderNo?: number;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
remark?: string | null;
/**
*
*
* @type {Date}
* @memberof SysAppOutput
*/
createTime?: Date | null;
/**
*
*
* @type {Date}
* @memberof SysAppOutput
*/
updateTime?: Date | null;
/**
* Id
*
* @type {number}
* @memberof SysAppOutput
*/
createUserId?: number | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
createUserName?: string | null;
/**
* Id
*
* @type {number}
* @memberof SysAppOutput
*/
updateUserId?: number | null;
/**
*
*
* @type {string}
* @memberof SysAppOutput
*/
updateUserName?: string | null;
/**
*
*
* @type {boolean}
* @memberof SysAppOutput
*/
isDelete?: boolean;
}