package com.xcong.excoin.modules.platform.dao;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity;
|
|
public interface PlatformFeeSettingDao extends BaseMapper<PlatformFeeSettingEntity> {
|
|
PlatformFeeSettingEntity getFeeSettingByTypeAndSymbolLable(@Param("type")Integer type,@Param("symbol")String symbol,@Param("lable")String lable);
|
|
PlatformFeeSettingEntity getFeeSettingByTypeAndSymbol(@Param("type")Integer type,@Param("symbol")String symbol);
|
|
List<PlatformFeeSettingEntity> getFeeSettingsByTypeAndSymbol(@Param("type")int i,@Param("symbol")String symbol);
|
|
}
|