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.
35 lines
688 B
35 lines
688 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 分销商资金明细表
|
|
*/
|
|
export interface DealerCapital {
|
|
// 主键ID
|
|
id?: number;
|
|
// 分销商用户ID
|
|
userId?: number;
|
|
// 订单ID
|
|
orderId?: number;
|
|
// 资金流动类型 (10佣金收入 20提现支出 30转账支出 40转账收入)
|
|
flowType?: number;
|
|
// 金额
|
|
money?: string;
|
|
// 描述
|
|
describe?: string;
|
|
// 对方用户ID
|
|
toUserId?: number;
|
|
// 商城ID
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 分销商资金明细表搜索条件
|
|
*/
|
|
export interface DealerCapitalParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|