Files
template-10490/api/system/user/model/count.ts
2025-01-27 23:24:42 +08:00

16 lines
213 B
TypeScript

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