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

71 lines
1.8 KiB
Java
Raw Normal View History

2025-02-12 13:42:52 +08:00
package com.ff.common.service;
import java.math.BigDecimal;
import java.util.List;
import com.ff.common.domain.TenantGameQuotaFlow;
/**
* Service
*
* @author shi
* @date 2025-02-12
*/
public interface ITenantGameQuotaFlowService
{
/**
*
*
* @param id
* @return
*/
TenantGameQuotaFlow selectTenantGameQuotaFlowById(Long id);
/**
*
*
* @param tenantGameQuotaFlow
* @return
*/
List<TenantGameQuotaFlow> selectTenantGameQuotaFlowList(TenantGameQuotaFlow tenantGameQuotaFlow);
/**
*
*
* @param tenantGameQuotaFlow
* @return
*/
int insertTenantGameQuotaFlow(TenantGameQuotaFlow tenantGameQuotaFlow);
/**
*
*
* @param tenantGameQuotaFlow
* @return
*/
int updateTenantGameQuotaFlow(TenantGameQuotaFlow tenantGameQuotaFlow);
/**
*
*
* @param ids
* @return
*/
int deleteTenantGameQuotaFlowByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
int deleteTenantGameQuotaFlowById(Long id);
/**
* id
*
* @param tenantGameQuotaFlow
* @return {@link BigDecimal }
*/
BigDecimal getExchangeMoneyByMemberId(TenantGameQuotaFlow tenantGameQuotaFlow);
2025-02-12 13:42:52 +08:00
}