feat(expense): 添加工作流更新时间字段

- 在 Expense 结构体中添加 WorkflowUpdatedAt 字段用于记录工作流状态更新时间
- 该字段为可选的时间指针类型,便于追踪审批流程的时间节点
This commit is contained in:
2026-03-26 09:36:22 +08:00
parent 8a462ac6fd
commit 439420270d

View File

@@ -54,6 +54,7 @@ type ExpenseItem struct {
WorkflowId int64 `json:"workflowId"`
WorkflowStatus int64 `json:"workflowStatus"`
WorkflowReason string `json:"workflowReason"`
WorkflowUpdatedAt *time.Time `json:"workflowUpdatedAt"`
ExpenseStaffId int64 `json:"expenseStaffId"`
CreatedStaffId int64 `json:"createdStaffId"`
BanFlag int64 `json:"banFlag"`