feat(erp): 添加费用报销支付时间字段
- 在 Expense 结构体中新增 PayAt 字段用于记录支付时间 - PayAt 字段类型为 *time.Time,支持空值 - PayAt 字段在 JSON 序列化中映射为 payAt
This commit is contained in:
@@ -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"`
|
||||
|
||||
Reference in New Issue
Block a user