大赛管理功能
This commit is contained in:
parent
23d46aac0c
commit
da470b1832
|
@ -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);
|
||||
|
||||
|
|
|
@ -13,4 +13,6 @@ public class RacePaperQueryVO extends PageQueryVO {
|
|||
* GZ, ZZ
|
||||
*/
|
||||
private String group;
|
||||
|
||||
private Long seasonId;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue