正在显示
2 个修改的文件
包含
4 行增加
和
0 行删除
@@ -19,6 +19,8 @@ func (srv UndertakerFeedbackService) SearchFeedback(cmd *command.SearchFeedbackC | @@ -19,6 +19,8 @@ func (srv UndertakerFeedbackService) SearchFeedback(cmd *command.SearchFeedbackC | ||
19 | PageSize: cmd.PageSize, | 19 | PageSize: cmd.PageSize, |
20 | CooperationContractName: cmd.ContractName, | 20 | CooperationContractName: cmd.ContractName, |
21 | UndertakerName: cmd.UndertakerName, | 21 | UndertakerName: cmd.UndertakerName, |
22 | + OrgIds: cmd.Operator.OrgIds, | ||
23 | + CompanyId: cmd.Operator.CompanyId, | ||
22 | }) | 24 | }) |
23 | if err != nil { | 25 | if err != nil { |
24 | return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error()) | 26 | return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error()) |
pkg/infrastructure/service_gateway/allied_creation_cooperation/param_contract_undertaker_feedback.go
@@ -47,6 +47,8 @@ type ( | @@ -47,6 +47,8 @@ type ( | ||
47 | CompanyId int64 `cname:"公司ID" json:"companyId"` | 47 | CompanyId int64 `cname:"公司ID" json:"companyId"` |
48 | // 组织机构ID | 48 | // 组织机构ID |
49 | OrgId int64 `cname:"组织机构ID" json:"orgId"` | 49 | OrgId int64 `cname:"组织机构ID" json:"orgId"` |
50 | + // 关联的组织机构ID列表 | ||
51 | + OrgIds []int64 `cname:"关联的组织机构ID列表" json:"orgIds"` | ||
50 | } | 52 | } |
51 | 53 | ||
52 | DataContractUndertakerFeedbackSearch struct { | 54 | DataContractUndertakerFeedbackSearch struct { |
-
请 注册 或 登录 后发表评论