game-api/ff-admin/src/main/java/com/ff/common/service/ICurrencyService.java

62 lines
1.1 KiB
Java
Raw Normal View History

2025-02-11 15:27:15 +08:00
package com.ff.common.service;
import java.util.List;
import com.ff.common.domain.Currency;
/**
* Service
*
* @author shi
* @date 2025-02-10
*/
public interface ICurrencyService
{
/**
*
*
* @param id
* @return
*/
Currency selectCurrencyById(Long id);
/**
*
*
* @param currency
* @return
*/
List<Currency> selectCurrencyList(Currency currency);
/**
*
*
* @param currency
* @return
*/
int insertCurrency(Currency currency);
/**
*
*
* @param currency
* @return
*/
int updateCurrency(Currency currency);
/**
*
*
* @param ids
* @return
*/
int deleteCurrencyByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
int deleteCurrencyById(Long id);
}