game-api/ff-game/src/main/java/com/ff/game/service/IGameSecretKeyCurrencyServi...

87 lines
2.3 KiB
Java
Raw Normal View History

package com.ff.game.service;
import java.util.List;
import com.ff.game.domain.GameName;
import com.ff.game.domain.GameSecretKey;
import com.ff.game.domain.GameSecretKeyCurrency;
import com.ff.game.dto.GameSecretKeyCurrencyDTO;
import com.ff.game.dto.GameSecretKeyDTO;
/**
* Service
*
* @author shi
* @date 2025-03-13
*/
public interface IGameSecretKeyCurrencyService
{
/**
*
*
* @param id
* @return
*/
GameSecretKeyCurrency selectGameSecretKeyCurrencyById(Long id);
/**
*
*
* @param gameSecretKeyCurrency
* @return
*/
List<GameSecretKeyCurrency> selectGameSecretKeyCurrencyList(GameSecretKeyCurrency gameSecretKeyCurrency);
/**
*
*
* @param gameSecretKeyCurrency
* @return
*/
int insertGameSecretKeyCurrency(GameSecretKeyCurrency gameSecretKeyCurrency);
/**
*
*
* @param gameSecretKeyCurrency
* @return
*/
int updateGameSecretKeyCurrency(GameSecretKeyCurrency gameSecretKeyCurrency);
/**
*
*
* @param ids
* @return
*/
int deleteGameSecretKeyCurrencyByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
int deleteGameSecretKeyCurrencyById(Long id);
/**
* dto
*
* @param gameSecretKeyCurrencyDTO dto
* @return {@link GameSecretKeyCurrencyDTO }
*/
GameSecretKeyCurrencyDTO findByGameSecretKeyCurrencyDTO(GameSecretKeyCurrencyDTO gameSecretKeyCurrencyDTO);
/**
*
*
* @param gameSecretKeyCurrencyDTO dto
* @return {@link List }<{@link GameSecretKeyCurrencyDTO }>
*/
List<GameSecretKeyCurrencyDTO> findByGameSecretKeyCurrencyDTOList(GameSecretKeyCurrencyDTO gameSecretKeyCurrencyDTO);
}