feat(erp): 添加工厂筛选功能

- 在 Request 结构体中添加 FactoryId 字段用于工厂筛选
- 添加 FactoryName 字段用于存储工厂名称
- 扩展请求结构以支持按工厂维度进行数据过滤
This commit is contained in:
2026-02-11 15:42:03 +08:00
parent 84ab44f17a
commit 1ba4e7f031

View File

@@ -39,6 +39,8 @@ type RequestSearch struct {
Ik3cloudStatus int64 // ik3cloud状态 Ik3cloudStatus int64 // ik3cloud状态
BankNameEq *string // 结汇银行完全匹配 BankNameEq *string // 结汇银行完全匹配
BankAccountEq *string // 结汇银行账号完全匹配 BankAccountEq *string // 结汇银行账号完全匹配
FactoryId int64 // 工厂筛选
FactoryName string // 工厂名称
} }
type ReplyRequestList struct { type ReplyRequestList struct {
List []RequestItem `json:"list"` List []RequestItem `json:"list"`