40 lines
774 B
TypeScript
40 lines
774 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 分销商资金明细表
|
|
*/
|
|
export interface ShopDealerCapital {
|
|
// 主键ID
|
|
id?: number;
|
|
// 分销商用户ID
|
|
userId?: number;
|
|
// 订单ID
|
|
orderId?: number;
|
|
// 订单编号
|
|
orderNo?: string;
|
|
// 资金流动类型 (10佣金收入 20提现支出 30转账支出 40转账收入)
|
|
flowType?: number;
|
|
// 金额
|
|
money?: string;
|
|
// 描述
|
|
comments?: string;
|
|
// 对方用户ID
|
|
toUserId?: number;
|
|
// 商城ID
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 分销商资金明细表搜索条件
|
|
*/
|
|
export interface ShopDealerCapitalParam extends PageParam {
|
|
id?: number;
|
|
userId?: number;
|
|
toUserId?: number;
|
|
keywords?: string;
|
|
}
|