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

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

View File

@@ -16,12 +16,13 @@ type ArgsReceivableList struct {
Search ReceivableSearch
}
type ReceivableSearch struct {
ReceivableSerial string // 收款单据号
CustomId int64 // 客户id
CustomName string // 客户名称
InvoiceSerial string // 出运发票号
CreatedAtStart *time.Time // 创建开始时间
CreatedAtEnd *time.Time // 创建结束时间
ReceivableSerial string // 收款单据号
CustomId int64 // 客户id
CustomName string // 客户名称
InvoiceSerial string // 出运发票号
CreatedAtStart *time.Time // 创建开始时间
CreatedAtEnd *time.Time // 创建结束时间
PermissionStaffIds []int64 // 权限员工id
}
type ReplyReceivableList struct {
List []ReceivableItem `json:"list"`