feat: 添加部门管理
This commit is contained in:
17
types/global.d.ts
vendored
17
types/global.d.ts
vendored
@@ -197,7 +197,24 @@ declare global {
|
||||
code: number;
|
||||
/**操作信息 */
|
||||
msg: string;
|
||||
/**执行时间 */
|
||||
time: string;
|
||||
/**执行状态 */
|
||||
success: boolean;
|
||||
/**响应结果 */
|
||||
data: T;
|
||||
}
|
||||
/**
|
||||
* 查询列表响应
|
||||
*/
|
||||
interface QueryListResult<T> {
|
||||
/**当前页 */
|
||||
page: number;
|
||||
/**每页数量 */
|
||||
pageSize: number;
|
||||
/**总页数 */
|
||||
total: number;
|
||||
/**结果 */
|
||||
result: Array<T>;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user