zainali5120
2020-07-16 c119feb821bdb1e6ef407f55056173f752c01c32
src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java
@@ -2,8 +2,11 @@
import java.math.BigDecimal;
import javax.validation.Valid;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto;
import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
public interface CoinService extends IService<MemberWalletCoinEntity>{
@@ -20,12 +23,6 @@
   public Result findWalletCoinBySymbol(String symbol);
   public Result getWalletCoinRecords();
   public Result getWalletContractRecords();
   public Result getWalletAgentRecords();
   public Result agentTransferToWalletCoin(BigDecimal balance, Integer transfertype);
   public Result findWalletAgentBySymbol();
@@ -34,4 +31,10 @@
   public Result getWalletAgentIntoRecords();
   public Result getWalletCoinRecords(@Valid RecordsPageDto recordsPageDto);
   public Result getWalletContractRecords(@Valid RecordsPageDto recordsPageDto);
   public Result getWalletAgentRecords(@Valid RecordsPageDto recordsPageDto);
}