作者 yangfu

个人共创项目搜索修改

@@ -114,6 +114,7 @@ func (srv CooperationProjectService) PersonSearchCooperationProject(projectQuery @@ -114,6 +114,7 @@ func (srv CooperationProjectService) PersonSearchCooperationProject(projectQuery
114 OrgId: projectQuery.OrgId, 114 OrgId: projectQuery.OrgId,
115 Status: 1, //搜索状态为“招标中”项目 115 Status: 1, //搜索状态为“招标中”项目
116 Keyword: projectQuery.Keyword, 116 Keyword: projectQuery.Keyword,
  117 + SearchCooperationProjectExtQueriesFlag: 1,
117 SearchCooperationProjectExtQueries: extQueries, 118 SearchCooperationProjectExtQueries: extQueries,
118 }) 119 })
119 if err != nil { 120 if err != nil {
@@ -208,6 +208,8 @@ type ( @@ -208,6 +208,8 @@ type (
208 UserBaseId int64 `cname:"用户基础数据ID" json:"userBaseId"` 208 UserBaseId int64 `cname:"用户基础数据ID" json:"userBaseId"`
209 // 共创项目承接对象,1员工,2共创用户,4公开,可以多选 209 // 共创项目承接对象,1员工,2共创用户,4公开,可以多选
210 CooperationProjectUndertakerType int32 `json:"cooperationProjectUndertakerType"` 210 CooperationProjectUndertakerType int32 `json:"cooperationProjectUndertakerType"`
  211 + // 额外的查询条件 0:不需要额外查询 1:额外查询
  212 + SearchCooperationProjectExtQueriesFlag int `cname:"额外的查询条件标识" json:"searchCooperationProjectExtQueriesFlag"`
211 // 额外的查询条件 213 // 额外的查询条件
212 SearchCooperationProjectExtQueries []*SearchCooperationProjectExtQuery `cname:"额外的查询条件" json:"searchCooperationProjectExtQueries"` 214 SearchCooperationProjectExtQueries []*SearchCooperationProjectExtQuery `cname:"额外的查询条件" json:"searchCooperationProjectExtQueries"`
213 } 215 }