Files
pc-10588/app/api/system/user/model/count.ts
2026-03-05 13:32:48 +08:00

16 lines
213 B
TypeScript

import type { PageParam } from '@/api';
/**
* 用户
*/
export interface Count {
balance?: string;
}
/**
* 用户搜索条件
*/
export interface UserParam extends PageParam {
organizationId?: number;
}