feat(erp): 添加收据认领部门ID字段

- 在收据认领结构体中新增DepartmentId字段
- 为收据认领功能增加部门关联支持
This commit is contained in:
2026-06-03 17:23:49 +08:00
parent da6bd17f84
commit adfe22c78b

View File

@@ -31,6 +31,7 @@ type ClaimItem struct {
CustomName string `json:"customName"`
IsConfirm int64 `json:"isConfirm"`
CreatedStaffId int64 `json:"createdStaffId"`
DepartmentId int64 `json:"departmentId"`
CreatedAt *time.Time `json:"createdAt"`
UpdatedAt *time.Time `json:"updatedAt"`
}