You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
383 B
23 lines
383 B
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;
|
|
}
|