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.
33 lines
604 B
33 lines
604 B
import type { PageParam } from '@/api';
|
|
import { SpecValue } from '@/api/shop/specValue/model';
|
|
|
|
/**
|
|
* 商品规格组记录表
|
|
*/
|
|
export interface Spec {
|
|
// 规格组ID
|
|
specId?: number;
|
|
// 规格组名称
|
|
specName?: string;
|
|
// 描述
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 排序
|
|
sortNumber?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 规格值
|
|
specValues?: SpecValue[];
|
|
key?: string;
|
|
label?: string;
|
|
value?: string;
|
|
}
|
|
|
|
/**
|
|
* 商品规格组记录表搜索条件
|
|
*/
|
|
export interface SpecParam extends PageParam {
|
|
specId?: number;
|
|
keywords?: string;
|
|
}
|