export type ListParams = { /** 页码 */ page: string; /** 每页数量 */ limit: string; }; export type OriginalListParams = Omit< T, 'page' | 'limit' >;