feat(expense): 添加报销人员字段支持

- 在 Expense 结构体中新增 ExpenseStaffIds 字段
- 为报销人信息提供数据存储支持
This commit is contained in:
2026-03-04 13:31:29 +08:00
parent dbc7f07a12
commit 058c3c140a

View File

@@ -29,6 +29,7 @@ type ExpenseSearch struct {
BankName string // 账号名称
WorkflowStatus int64 // 审核状态
CreatedStaffIds []int64 // 创建人
ExpenseStaffIds []int64 // 报销人
Ik3cloudStatus int64 // ik3cloud状态
PermissionStaffIds []int64 // 权限员工id
}