@esamples/mypack-1
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.13.
22 lines (21 loc) • 354 B
TypeScript
/**
* 分页请求必须参数
*/
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;
}