Files
site-10584/api/system/user/model/count.ts
2026-01-29 10:43:43 +08:00

16 lines
213 B
TypeScript

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