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.
30 lines
508 B
30 lines
508 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 可见性
|
|
*/
|
|
export interface UserVisibility {
|
|
// 可见性id
|
|
id?: number;
|
|
// 可见性类型
|
|
type?: string;
|
|
// 用户ID
|
|
userId: number;
|
|
// 昵称
|
|
nickname: string;
|
|
// 可见性名称
|
|
assetsId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 可见性搜索条件
|
|
*/
|
|
export interface UserVisibilityParam extends PageParam {
|
|
type?: string;
|
|
userId?: string;
|
|
assetsId?: number;
|
|
// 商户编号
|
|
merchantCode?: string;
|
|
}
|