初始化
This commit is contained in:
23
api/shop/goodsRule/model/index.ts
Normal file
23
api/shop/goodsRule/model/index.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 商品规则值(规格)表
|
||||
*/
|
||||
export interface GoodsRule {
|
||||
//
|
||||
id?: number;
|
||||
// 规格名称
|
||||
ruleName?: string;
|
||||
// 规格值
|
||||
ruleValue?: string;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品规则值(规格)表搜索条件
|
||||
*/
|
||||
export interface GoodsRuleParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user