UNPKG

npm-kpocom-mis5-api

Version:

[视频教程](https://www.bilibili.com/video/BV1EW4y1C71D)

64 lines (63 loc) 1.43 kB
/* tslint:disable */ /* eslint-disable */ /** * 登录授权接口 * 授权相关 * * OpenAPI spec version: 1.0.0 * Contact: zofnou@126.com * * 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 { TenantOutput } from './tenant-output'; /** * 分页泛型集合 * @export * @interface SqlSugarPagedListTenantOutput */ export interface SqlSugarPagedListTenantOutput { /** * 页码 * @type {number} * @memberof SqlSugarPagedListTenantOutput */ page?: number; /** * 页容量 * @type {number} * @memberof SqlSugarPagedListTenantOutput */ pageSize?: number; /** * 总条数 * @type {number} * @memberof SqlSugarPagedListTenantOutput */ total?: number; /** * 总页数 * @type {number} * @memberof SqlSugarPagedListTenantOutput */ totalPages?: number; /** * 当前页集合 * @type {Array<TenantOutput>} * @memberof SqlSugarPagedListTenantOutput */ items?: Array<TenantOutput> | null; /** * 是否有上一页 * @type {boolean} * @memberof SqlSugarPagedListTenantOutput */ hasPrevPage?: boolean; /** * 是否有下一页 * @type {boolean} * @memberof SqlSugarPagedListTenantOutput */ hasNextPage?: boolean; }