feat(purchase): 添加销售 ID 字段

在 ReplyPurchaseInfo 结构体中添加 SaleId 字段,用于关联销售订单 ID。
This commit is contained in:
守护自己的云 2025-07-29 11:33:42 +08:00
parent 895940dbc5
commit 212ca5a7e5

View File

@ -99,6 +99,7 @@ func (p *purchase) Add(ctx context.Context, args ArgsPurchaseAdd) (err error) {
type ReplyPurchaseInfo struct {
PurchaseId int64 `json:"purchaseId"`
SaleId int64 `json:"saleId"`
FactoryId int64 `json:"factoryId"`
FactoryName string `json:"factoryName"`
FactoryAddress string `json:"factoryAddress"`