UNIVPLMDataIntegration/Web/src/api-services/models/sql-sugar-paged-list-sys-config-tenant.ts

80 lines
1.9 KiB
TypeScript
Raw Normal View History

2025-02-10 12:16:49 +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.
*/
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
import { SysConfigTenant } from './sys-config-tenant';
2025-02-16 11:29:15 +08:00
/**
2025-02-10 12:16:49 +08:00
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @export
* @interface SqlSugarPagedListSysConfigTenant
*/
export interface SqlSugarPagedListSysConfigTenant {
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {number}
* @memberof SqlSugarPagedListSysConfigTenant
*/
page?: number;
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {number}
* @memberof SqlSugarPagedListSysConfigTenant
*/
pageSize?: number;
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {number}
* @memberof SqlSugarPagedListSysConfigTenant
*/
total?: number;
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {number}
* @memberof SqlSugarPagedListSysConfigTenant
*/
totalPages?: number;
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {Array<SysConfigTenant>}
* @memberof SqlSugarPagedListSysConfigTenant
*/
items?: Array<SysConfigTenant> | null;
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {boolean}
* @memberof SqlSugarPagedListSysConfigTenant
*/
hasPrevPage?: boolean;
2025-02-16 11:29:15 +08:00
2025-02-10 12:16:49 +08:00
/**
*
2025-02-16 11:29:15 +08:00
*
2025-02-10 12:16:49 +08:00
* @type {boolean}
* @memberof SqlSugarPagedListSysConfigTenant
*/
hasNextPage?: boolean;
}