Selaa lähdekoodia

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

fuwencai 1 vuosi sitten
vanhempi
commit
e545504f8d
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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"