| 1 | /* |
| 2 | * @Author: nevin |
| 3 | * @Date: 2022-03-17 16:05:38 |
| 4 | * @LastEditors: nevin |
| 5 | * @LastEditTime: 2025-03-03 18:59:47 |
| 6 | * @Description: 表格状数据 |
| 7 | */ |
| 8 | export interface CorrectResponse<T> { |
| 9 | list: T[]; |
| 10 | pageSize: number; |
| 11 | pageNo: number; |
| 12 | count: number; |
| 13 | } |
| 14 |