forked from gxwebsoft/mp-10550
feat(api): 添加分销商相关数据模型
- 新增分销商申请、资金明细、订单记录、推荐关系、设置、用户记录、提现明细等数据模型 - 更新环境配置,修改 API 基础 URL 和应用名称
This commit is contained in:
25
src/api/shop/shopDealerSetting/model/index.ts
Normal file
25
src/api/shop/shopDealerSetting/model/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { PageParam } from '@/api/index';
|
||||
|
||||
/**
|
||||
* 分销商设置表
|
||||
*/
|
||||
export interface ShopDealerSetting {
|
||||
// 设置项标示
|
||||
key?: string;
|
||||
// 设置项描述
|
||||
describe?: string;
|
||||
// 设置内容(json格式)
|
||||
values?: string;
|
||||
// 商城ID
|
||||
tenantId?: number;
|
||||
// 更新时间
|
||||
updateTime?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 分销商设置表搜索条件
|
||||
*/
|
||||
export interface ShopDealerSettingParam extends PageParam {
|
||||
key?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user