소스 검색

Merge branch 'dev/v1.1.36_fuwencai' of BaseService/jyMicroservices into feature/v1.1.36

fuwencai 1 년 전
부모
커밋
e545504f8d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jyBXCore/rpc/service/participateStatistics.go

+ 1 - 1
jyBXCore/rpc/service/participateStatistics.go

@@ -801,7 +801,7 @@ func GetDetailQuery(isEnt bool, personArrStr string, req *bxcore.ProjectDetailsR
 		}
 		//参标状态:-1全部,0未参标、1已参标
 		if req.IsParticipate == 1 {
-			query = append(query, fmt.Sprintf("b.isparticipate = %d", req.IsParticipate))
+			query = append(query, fmt.Sprintf("b.is_participate = %d", req.IsParticipate))
 		}
 		q = "select b.project_id,b.stage    from  participate_stage_statistics b where %s %s order by b.update_date desc"
 		qCount = "select count(b.project_id)   from  participate_stage_statistics b where %s %s"