13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
import type { PageParam } from '@/api';
|
|
/**
|
|
* 会员
|
|
*/
|
|
export interface Profile {}
|
|
|
|
/**
|
|
* 会员搜索条件
|
|
*/
|
|
export interface ProfileParam extends PageParam {
|
|
account?: string;
|
|
}
|