tangzy
2021-09-02 92d375e11f68b898cd8a46cf02bcb82cd469ded5
src/main/java/org/springblade/modules/apply/mapper/ApplyMapper.java
@@ -88,7 +88,7 @@
    * 查询报名人员未关联考试的ids集合
    * @return
    */
    List<Long> getApplyIds();
    List<Long> getApplyIds(@Param("number") Integer number);
   /**
    * 查询考试人数
@@ -125,4 +125,11 @@
    * @return
    */
   List<ApplyVO> getTrainDetailList(Long id);
   /**
    * 查询报名信息,取最新的一条(即当前userId,)applyId最大的一条记录
    * @param userId
    * @return
    */
   Apply getMaxApplyIdByUserIdInfo(@Param("userId") Long userId);
}