UNPKG

npm-kpocom-mis5-api

Version:

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

63 lines (62 loc) 1.21 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. */ /** * * @export * @interface PageTenantInput */ export interface PageTenantInput { /** * 当前页码 * @type {number} * @memberof PageTenantInput */ page?: number; /** * 页码容量 * @type {number} * @memberof PageTenantInput */ pageSize?: number; /** * 排序字段 * @type {string} * @memberof PageTenantInput */ field?: string | null; /** * 排序方向 * @type {string} * @memberof PageTenantInput */ order?: string | null; /** * 降序排序 * @type {string} * @memberof PageTenantInput */ descStr?: string | null; /** * 名称 * @type {string} * @memberof PageTenantInput */ name?: string | null; /** * 电话 * @type {string} * @memberof PageTenantInput */ phone?: string | null; }