feat(erp): 添加费用报销支付时间字段

- 在 Expense 结构体中新增 PayAt 字段用于记录支付时间
- PayAt 字段类型为 *time.Time,支持空值
- PayAt 字段在 JSON 序列化中映射为 payAt
This commit is contained in:
2026-08-14 11:37:40 +08:00
parent 586367b430
commit 2c5690eaf8

View File

@@ -129,6 +129,7 @@ type ReplyExpenseInfo struct {
Remarks string `json:"remarks"`
BankAccount string `json:"bankAccount"`
BankName string `json:"bankName"`
PayAt *time.Time `json:"payAt"`
TravelStaffIds []int64 `json:"travelStaffIds"`
TravelStartAt *time.Time `json:"travelStartAt"`
TravelEndAt *time.Time `json:"travelEndAt"`