大赛管理功能
This commit is contained in:
parent
da470b1832
commit
eecef5ba96
|
@ -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);
|
||||
|
||||
|
|
|
@ -15,4 +15,5 @@ public class RacePaperQueryVO extends PageQueryVO {
|
|||
private String group;
|
||||
|
||||
private Long seasonId;
|
||||
private String seasonName;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue