You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
213 B
15 lines
213 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 用户
|
|
*/
|
|
export interface Count {
|
|
balance?: string;
|
|
}
|
|
|
|
/**
|
|
* 用户搜索条件
|
|
*/
|
|
export interface UserParam extends PageParam {
|
|
organizationId?: number;
|
|
}
|