feat(erp): 添加权限员工ID字段到搜索结构体
- 在ExpenseSearch结构体中添加PermissionStaffIds字段 - 在PayableSearch结构体中添加PermissionStaffIds字段 - 在ReceiptSearch结构体中添加PermissionStaffIds字段 - 在RequestSearch结构体中添加PermissionStaffIds字段 - 对所有新增字段进行代码格式化调整
This commit is contained in:
@@ -16,12 +16,13 @@ type ArgsPayableList struct {
|
||||
Search PayableSearch
|
||||
}
|
||||
type PayableSearch struct {
|
||||
PayableSerial string // 付款单据号
|
||||
FactoryId int64 // 工厂id
|
||||
AccountingSerial string // 做账单号
|
||||
CreatedAtStart *time.Time // 创建开始时间
|
||||
CreatedAtEnd *time.Time // 创建结束时间
|
||||
IsConfirm int64 // 是否确认
|
||||
PayableSerial string // 付款单据号
|
||||
FactoryId int64 // 工厂id
|
||||
AccountingSerial string // 做账单号
|
||||
CreatedAtStart *time.Time // 创建开始时间
|
||||
CreatedAtEnd *time.Time // 创建结束时间
|
||||
IsConfirm int64 // 是否确认
|
||||
PermissionStaffIds []int64 // 权限员工id
|
||||
}
|
||||
type ReplyPayableList struct {
|
||||
List []PayableItem `json:"list"`
|
||||
|
||||
Reference in New Issue
Block a user