feat(erp): 添加发票编号和确认状态字段

- 在收汇认领结构体中添加发票编号字段
- 在收汇单结构体中添加确认状态字段
- 更新收汇单响应结构体以包含确认状态信息
This commit is contained in:
2026-02-02 16:43:40 +08:00
parent 1be44c0ae2
commit 134fadf47c
2 changed files with 7 additions and 4 deletions

View File

@@ -50,10 +50,11 @@ type ArgsClaimAdd struct {
ClaimAdd
}
type ClaimAdd struct {
ReceiptId int64 // 收汇单ID
ReceivableId int64 // 应收单ID
Amount decimal.Decimal // 应收金额
Remarks string // 备注
ReceiptId int64 // 收汇单ID
ReceivableId int64 // 应收单ID
Amount decimal.Decimal // 应收金额
Remarks string // 备注
InvoiceSerial string // 发票编号
}
// Add @TITLE 添加