feat(product): 添加产品 PO 字段

- 在 ProductAdd 结构体中增加 PO 字段,用于存储采购订单号
- 此修改旨在满足客户定制需求,提高产品管理的灵活性和准确性
This commit is contained in:
守护自己的云 2025-04-30 15:04:46 +08:00
parent abf3a43e98
commit f71c5f6be1

View File

@ -150,6 +150,7 @@ type ArgsProductAdd struct {
type ProductAdd struct { type ProductAdd struct {
ProductId int64 // 产品id ProductId int64 // 产品id
Serial string // 货号 Serial string // 货号
PO string // PO
CustomSerial string // 客户货号 CustomSerial string // 客户货号
Name string // 中文品名 Name string // 中文品名
EngName string // 英文品名 EngName string // 英文品名