xiaoyong931011
2021-05-18 9909c23061541816b21d560f765d0a7274fc6323
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.excoin.modules.otc.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.entity.FebsResponse;
import com.xcong.excoin.common.entity.QueryRequest;
import com.xcong.excoin.modules.otc.entity.OtcMarketBussinessEntity;
 
public interface OtcService extends IService<OtcMarketBussinessEntity> {
 
    IPage<OtcMarketBussinessEntity> otcShopList(OtcMarketBussinessEntity otcMarketBussinessEntity, QueryRequest request);
 
    FebsResponse agreeShop(Long id);
 
    FebsResponse disagreeShop(Long id);
}