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