feat(erp): 添加审核状态数组字段支持多状态查询
- 在请求结构体中新增 WorkflowStatuses 字段用于支持多个审核状态查询 - 保留原有的 WorkflowStatus 单一状态字段以维持向后兼容性 - 为后续支持批量状态筛选功能提供数据结构基础
This commit is contained in:
@@ -33,6 +33,7 @@ type RequestSearch struct {
|
|||||||
BankName string // 账号名称
|
BankName string // 账号名称
|
||||||
AccountingSerial string // 做账合同号
|
AccountingSerial string // 做账合同号
|
||||||
WorkflowStatus int64 // 审核状态
|
WorkflowStatus int64 // 审核状态
|
||||||
|
WorkflowStatuses []int64 // 审核状态
|
||||||
PaidAmountStart *decimal.Decimal // 实付金额开始
|
PaidAmountStart *decimal.Decimal // 实付金额开始
|
||||||
PaidAmountEnd *decimal.Decimal // 实付金额结束
|
PaidAmountEnd *decimal.Decimal // 实付金额结束
|
||||||
CreatedStaffIds []int64 // 创建人
|
CreatedStaffIds []int64 // 创建人
|
||||||
|
|||||||
Reference in New Issue
Block a user