40 lines
817 B
Java
40 lines
817 B
Java
|
|
package com.ff.game.mapper;
|
||
|
|
|
||
|
|
import com.ff.api.response.GameResponse;
|
||
|
|
import com.ff.game.api.request.GameUniqueDTO;
|
||
|
|
import com.ff.game.domain.Game;
|
||
|
|
import com.ff.game.dto.GameDTO;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author cengy
|
||
|
|
*/
|
||
|
|
public interface GameBizMapper {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 选择游戏数据列表
|
||
|
|
*
|
||
|
|
* @param gameDTO 游戏dto
|
||
|
|
* @return {@link List }<{@link Game }>
|
||
|
|
*/
|
||
|
|
List<Game> selectGameDTOList(GameDTO gameDTO);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 选择游戏响应列表
|
||
|
|
*
|
||
|
|
* @return {@link List }<{@link GameResponse }>
|
||
|
|
*/
|
||
|
|
List<GameResponse> selectGameResponseList();
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 选择游戏唯一列表
|
||
|
|
*
|
||
|
|
* @param gameUniqueDTO 游戏独有dto
|
||
|
|
* @return {@link List }<{@link Game }>
|
||
|
|
*/
|
||
|
|
List<Game> selectGameUniqueList(GameUniqueDTO gameUniqueDTO);
|
||
|
|
}
|
||
|
|
|