241224
This commit is contained in:
39
src/api/shop/merchantGoodsPackage/model/index.ts
Normal file
39
src/api/shop/merchantGoodsPackage/model/index.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user