diff --git a/erp/receivable.go b/erp/receivable.go index b68180c..c3ecb9a 100644 --- a/erp/receivable.go +++ b/erp/receivable.go @@ -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"`