xiaoyong931011
2020-05-25 cf909807ff63a31954ee8dbe5d0eda010923e096
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.excoin.modules.coin.service;
 
import java.math.BigDecimal;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.coin.entity.OrderCoinEntity;
 
public interface OrderCoinService extends IService<OrderCoinEntity>{
 
    Result enterTransactionPageOfWalletCoin(String symbol, String type);
 
    Result submitSalesWalletCoinOrder(String symbol, Integer type, Integer tradeType, BigDecimal price,
            BigDecimal amount);
 
}