@ -304,7 +304,7 @@ public interface SignFamilyDao extends PagingAndSortingRepository<SignFamily, Lo
List<SignFamily> findBySignTypeAndTeamCode();
//找出没有健康管理师的签约数据
@Query("select a from SignFamily a where a.type = 2 and a.status >= 1 and a.doctorHealth is null and a.adminTeamId = ?2 order by a.czrq desc")
@Query("select a from SignFamily a where a.type = 2 and a.status >= 1 and a.doctorHealth is null and a.adminTeamId = ?1 order by a.czrq desc")
List<SignFamily> findNoHealthSignFamilyNum(Long teamCode);