基于Java spring + vue3 + nuxt构建的内容管理系统
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.
 
 
 

25 lines
408 B

import type { PageParam } from '@/api';
/**
* 商品规格值
*/
export interface GoodsSpecRel {
// 主键
id?: number;
// 规格ID
specId?: number;
// 规格值ID
specValueId?: number;
// 规格值
specValue?: string;
// 租户id
tenantId?: number;
}
/**
* 商品规格值搜索条件
*/
export interface GoodsSpecRelParam extends PageParam {
id?: number;
keywords?: string;
}