Type alias PagingValue<Item>

PagingValue<Item>: {
    list: Item[];
    pages: number;
    total: number;
}

查询的分页数据结果

Type Parameters

  • Item = any

Type declaration

  • list: Item[]

    查询到的分页结果

  • pages: number

    总页数

  • total: number

    总数