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

73 lines
1.7 KiB
Java
Raw Normal View History

package com.ff.common.service;
import java.util.List;
import com.ff.common.domain.TenantQuotaExchange;
import org.apache.poi.ss.formula.functions.T;
/**
* Service
*
* @author shi
* @date 2025-02-21
*/
public interface ITenantQuotaExchangeService
{
/**
*
*
* @param id
* @return
*/
TenantQuotaExchange selectTenantQuotaExchangeById(Long id);
/**
*
*
* @param tenantQuotaExchange
* @return
*/
List<TenantQuotaExchange> selectTenantQuotaExchangeList(TenantQuotaExchange tenantQuotaExchange);
/**
*
*
* @param currencyCode
* @param exchangeCurrencyCode
* @return {@link TenantQuotaExchange }
*/
TenantQuotaExchange getTenantQuotaExchange(String currencyCode,String exchangeCurrencyCode);
/**
*
*
* @param tenantQuotaExchange
* @return
*/
int insertTenantQuotaExchange(TenantQuotaExchange tenantQuotaExchange);
/**
*
*
* @param tenantQuotaExchange
* @return
*/
int updateTenantQuotaExchange(TenantQuotaExchange tenantQuotaExchange);
/**
*
*
* @param ids
* @return
*/
int deleteTenantQuotaExchangeByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
int deleteTenantQuotaExchangeById(Long id);
}