From 1ba4e7f0319c82bbe4663c05516fd4a5b228e6fd Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 11 Feb 2026 15:42:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E5=B7=A5?= =?UTF-8?q?=E5=8E=82=E7=AD=9B=E9=80=89=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 Request 结构体中添加 FactoryId 字段用于工厂筛选 - 添加 FactoryName 字段用于存储工厂名称 - 扩展请求结构以支持按工厂维度进行数据过滤 --- erp/request.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erp/request.go b/erp/request.go index 7487d80..bd14aa6 100644 --- a/erp/request.go +++ b/erp/request.go @@ -39,6 +39,8 @@ type RequestSearch struct { Ik3cloudStatus int64 // ik3cloud状态 BankNameEq *string // 结汇银行完全匹配 BankAccountEq *string // 结汇银行账号完全匹配 + FactoryId int64 // 工厂筛选 + FactoryName string // 工厂名称 } type ReplyRequestList struct { List []RequestItem `json:"list"`