Files
template-10490/api/shop/goodsRule/model/index.ts
2025-01-27 23:24:42 +08:00

24 lines
383 B
TypeScript

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;
}