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.
48 lines
928 B
48 lines
928 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 分销商用户记录表
|
|
*/
|
|
export interface DealerUser {
|
|
// 自增id
|
|
id?: number;
|
|
// 分销商用户ID
|
|
userId?: number;
|
|
// 姓名
|
|
realName?: string;
|
|
// 手机号
|
|
mobile?: string;
|
|
// 支付密码
|
|
payPassword?: string;
|
|
// 当前可提现佣金
|
|
money?: string;
|
|
// 已冻结佣金
|
|
freezeMoney?: string;
|
|
// 累积提现佣金
|
|
totalMoney?: string;
|
|
// 推荐人用户ID
|
|
refereeId?: number;
|
|
// 成员数量(一级)
|
|
firstNum?: number;
|
|
// 成员数量(二级)
|
|
secondNum?: number;
|
|
// 成员数量(三级)
|
|
thirdNum?: number;
|
|
// 是否删除
|
|
isDelete?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 分销商用户记录表搜索条件
|
|
*/
|
|
export interface DealerUserParam extends PageParam {
|
|
id?: number;
|
|
userId?: number;
|
|
keywords?: string;
|
|
}
|