作者 yangfu
@@ -73,6 +73,7 @@ func (cooperationApplicationService *CooperationApplicationService) ListCooperat @@ -73,6 +73,7 @@ func (cooperationApplicationService *CooperationApplicationService) ListCooperat
73 CooperationProjectName: listCooperationApplicationQuery.ProjectName, 73 CooperationProjectName: listCooperationApplicationQuery.ProjectName,
74 PageNumber: listCooperationApplicationQuery.PageNumber, 74 PageNumber: listCooperationApplicationQuery.PageNumber,
75 PageSize: listCooperationApplicationQuery.PageSize, 75 PageSize: listCooperationApplicationQuery.PageSize,
  76 + CompanyId: int(listCooperationApplicationQuery.Operator.CompanyId),
76 }) 77 })
77 if err != nil { 78 if err != nil {
78 return 0, nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error()) 79 return 0, nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
@@ -83,6 +83,7 @@ func (cooperationProjectService *CooperationProjectService) GetCooperationProjec @@ -83,6 +83,7 @@ func (cooperationProjectService *CooperationProjectService) GetCooperationProjec
83 CooperationProjectNumber: resultProject.CooperationProject.CooperationProjectNumber, 83 CooperationProjectNumber: resultProject.CooperationProject.CooperationProjectNumber,
84 PageNumber: 0, 84 PageNumber: 0,
85 PageSize: 0, 85 PageSize: 0,
  86 + CompanyId: resultProject.Company.CompanyId,
86 }) 87 })
87 if err != nil { 88 if err != nil {
88 return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error()) 89 return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
@@ -163,6 +163,9 @@ type ( @@ -163,6 +163,9 @@ type (
163 PageNumber int `json:"pageNumber"` 163 PageNumber int `json:"pageNumber"`
164 PageSize int `json:"pageSize"` 164 PageSize int `json:"pageSize"`
165 CompanyId int `json:"companyId"` 165 CompanyId int `json:"companyId"`
  166 + OrgId int64 `json:"orgId"` // 组织机构ID
  167 + UserId int64 `json:"userId"`
  168 + UserBaseId int64 `json:"userBaseId"`
166 } 169 }
167 170
168 DataCooperationApplicationSearch struct { 171 DataCooperationApplicationSearch struct {