初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
import type { PageParam } from '@/api';
/**
* 商品sku列表
*/
export interface GoodsSku {
// 主键ID
id?: number;
// 商品ID
goodsId?: number;
// 规格组ID
specId?: number;
// 商品图片
image?: string;
// 商品价格
price?: number;
// 市场价格
salePrice?: number;
// 成本价
cost?: string;
// 库存
stock?: number;
// sku编码
skuNo?: string;
// 唯一值
unique?: string;
// 重量
weight?: string;
// 体积
volume?: string;
// 状态, 0正常, 1异常
status?: number;
// 备注
comments?: string;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
images?: any;
sku?: string;
}
/**
* 商品sku列表搜索条件
*/
export interface GoodsSkuParam extends PageParam {
id?: number;
goodsId?: number;
keywords?: string;
}