大赛管理功能

This commit is contained in:
tiger_zhou 2024-02-27 13:49:46 +08:00
parent da470b1832
commit eecef5ba96
2 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,9 @@ public interface RacetrPaperDAO extends MyBatisBaseDao<RacetrPaper, Long, Racetr
+ "<if test='vo.seasonId!= null and vo.seasonId!= \"\"'> "
+ " and A.season_id = #{vo.seasonId} "
+ "</if> "
+ "<if test='vo.seasonName!= null and vo.seasonName!= \"\"'> "
+ " and B.code like CONCAT('%',#{vo.seasonName},'%') "
+ "</if> "
+ "</script>")
List<RacePaperPageVO> pages(@Param("vo") RacePaperQueryVO vo);

View File

@ -15,4 +15,5 @@ public class RacePaperQueryVO extends PageQueryVO {
private String group;
private Long seasonId;
private String seasonName;
}