大赛管理功能

This commit is contained in:
tiger_zhou 2024-02-27 13:47:23 +08:00
parent 23d46aac0c
commit da470b1832
2 changed files with 5 additions and 0 deletions

View File

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

View File

@ -13,4 +13,6 @@ public class RacePaperQueryVO extends PageQueryVO {
* GZ, ZZ
*/
private String group;
private Long seasonId;
}