package com.xcong.excoin.modules.platform.service; import com.baomidou.mybatisplus.extension.service.IService; import com.xcong.excoin.common.response.Result; import com.xcong.excoin.modules.platform.entity.PlatformBannerEntity; import com.xcong.excoin.modules.platform.entity.PlatformSymbolsSkuEntity; public interface PlatformSymbolsSkuService extends IService { public PlatformSymbolsSkuEntity findSymbolSkuByName(String name); }