Helius
2020-06-16 51571c5cde2c49613346418e75e3fd8bcae3e13a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.contract.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.contract.entity.PlatformLeverageSettingEntity;
import com.xcong.excoin.modules.contract.entity.PlatformSymbolsSkuEntity;
import com.xcong.excoin.modules.contract.entity.PlatformTradeSettingEntity;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface TradeSettingDao extends BaseMapper<PlatformTradeSettingEntity> {
 
    PlatformTradeSettingEntity findTradeSetting();
 
    PlatformSymbolsSkuEntity findSymbolSkubySymbol(@Param("symbol") String symbol);
    
    List<PlatformSymbolsSkuEntity> findAllSymbolSkubySymbol();
 
    List<PlatformLeverageSettingEntity> findLeverageSetting();
 
}