UNIVPLMDataIntegration/Web/src/api-services/models/sys-info-input.ts

159 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.
*/
/**
*
2024-11-25 16:27:14 +08:00
*
* @export
* @interface SysInfoInput
2024-11-25 16:27:14 +08:00
*/
export interface SysInfoInput {
2024-11-25 16:27:14 +08:00
/**
* Id
*
* @type {number}
* @memberof SysInfoInput
*/
tenantId?: number;
2024-11-25 16:27:14 +08:00
/**
* Data URI scheme base64
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
logoBase64?: string | null;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
logoFileName?: string | null;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
title: string;
2024-11-25 16:27:14 +08:00
/**
*
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
viceTitle?: string | null;
/**
*
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
viceDesc?: string | null;
/**
*
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
copyright: string;
2024-11-25 16:27:14 +08:00
/**
* ICP备案号
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
icp: string;
2024-11-25 16:27:14 +08:00
/**
* ICP地址
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
icpUrl: string;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
watermark?: string | null;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
version?: string | null;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
themeColor: string;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
layout: string;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {string}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
animation: string;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {boolean}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
captcha?: boolean;
2024-11-25 16:27:14 +08:00
/**
*
2024-11-25 16:27:14 +08:00
*
* @type {boolean}
* @memberof SysInfoInput
2024-11-25 16:27:14 +08:00
*/
secondVer?: boolean;
/**
*
*
* @type {Array<Blob>}
* @memberof SysInfoInput
*/
carouselFiles?: Array<Blob> | null;
2024-11-25 16:27:14 +08:00
}