UNPKG

@yoyoboot/l-52abp-ng

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.13.

37 lines (36 loc) 600 B
/** * 分页请求必须参数 */ export declare class PagedResultDto { items: any[]; totalCount: number; } /** * 实体主键dto */ export interface IEntityDto { id: number; } /** * 分页结果dto */ export declare class PagedRequestDto { skipCount: number; maxResultCount: number; sorting: string; } /** 排序 */ export interface ISortCondition { /** 字段 */ field: string | undefined; /** 顺序 */ order: number; /** 排序类型 */ type: SortType | any; } /** 排序类型 */ export declare enum SortType { None, Asc, Desc }