This commit is contained in:
2024-12-24 20:31:47 +08:00
parent 9e831de60b
commit 07b1f341b3
100 changed files with 11616 additions and 1653 deletions

View File

@@ -0,0 +1,39 @@
import type { PageParam } from '@/api';
/**
* 商家充值套餐
*/
export interface MerchantGoodsPackage {
//
id?: number;
// 金额
amount?: string;
// 可使用次数
getNum?: string;
//
merchantId?: number;
//
userId?: number;
// 0待审核1通过2拒绝
status?: string;
// 排序(数字越小越靠前)
sortNumber?: number;
// 备注
comments?: string;
// 是否删除, 0否, 1是
deleted?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
// 修改时间
updateTime?: string;
}
/**
* 商家充值套餐搜索条件
*/
export interface MerchantGoodsPackageParam extends PageParam {
id?: number;
keywords?: string;
}