feat(service): 添加收款模块权限员工ID字段

- 在ReceivableSearch结构体中新增PermissionStaffIds字段
- 用于支持收款模块的权限控制功能
- 保持原有搜索字段不变,扩展权限过滤能力
This commit is contained in:
2026-02-24 14:27:13 +08:00
parent ed0525a2a6
commit e1ea9dba38

View File

@@ -22,6 +22,7 @@ type ReceivableSearch struct {
InvoiceSerial string // 出运发票号 InvoiceSerial string // 出运发票号
CreatedAtStart *time.Time // 创建开始时间 CreatedAtStart *time.Time // 创建开始时间
CreatedAtEnd *time.Time // 创建结束时间 CreatedAtEnd *time.Time // 创建结束时间
PermissionStaffIds []int64 // 权限员工id
} }
type ReplyReceivableList struct { type ReplyReceivableList struct {
List []ReceivableItem `json:"list"` List []ReceivableItem `json:"list"`