websoft-uniapp仓库模板
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.
 
 
 
 
 
 

47 lines
817 B

import type { PageParam } from '@/api';
/**
* 商品sku列表
*/
export interface GoodsSku {
// 主键ID
id?: number;
// 商品ID
goodsId?: number;
// 规格组ID
specId?: number;
// 规格值ID
specValueId?: number;
// 规格值0
specValue0?: string;
// 规格值1
specValue1?: string;
// 规格值2
specValue2?: string;
// 商品图片
image?: string;
// 商品价格
price?: string;
// 市场价格
salePrice?: string;
// 库存
stock?: number;
// sku编码
skuNo?: string;
// 状态, 0正常, 1异常
status?: number;
// 备注
comments?: string;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 商品sku列表搜索条件
*/
export interface GoodsSkuParam extends PageParam {
id?: number;
keywords?: string;
}