gao
2020-05-28 cc9d558c8cda42d53be7b4545d2f33db26edf777
src/main/java/com/xcong/excoin/modules/platform/dao/TradeSettingDao.java
New file
@@ -0,0 +1,22 @@
package com.xcong.excoin.modules.platform.dao;
import java.util.List;
import com.xcong.excoin.modules.platform.entity.PlatformSymbolsSkuEntity;
import org.apache.ibatis.annotations.Param;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.platform.entity.PlatformLeverageSettingEntity;
import com.xcong.excoin.modules.platform.entity.PlatformTradeSettingEntity;
public interface TradeSettingDao extends BaseMapper<PlatformTradeSettingEntity> {
   PlatformTradeSettingEntity findTradeSetting();
   PlatformSymbolsSkuEntity findSymbolSkubySymbol(@Param("symbol") String symbol);
   List<PlatformSymbolsSkuEntity> findAllSymbolSkubySymbol();
   List<PlatformLeverageSettingEntity> findLeverageSetting();
}