KKSU
2023-11-27 46e65fb48af4fda3c8fd32abb948365fd1cbaa3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package cc.mrbird.febs.mall.service;
 
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.mall.dto.*;
import cc.mrbird.febs.mall.entity.MallNewsCategory;
import cc.mrbird.febs.mall.entity.MallProductNft;
import cc.mrbird.febs.mall.vo.ApiMallProductNftVo;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
public interface IApiMallProductService extends IService<MallProductNft> {
    List<ApiMallProductNftVo> productNFTList();
 
    FebsResponse createNFT(ApiCreateNFTDto createNFTDto);
 
    FebsResponse outFcm(ApiOutFcmDto outFcmDto);
 
    FebsResponse outNFT(ApiOutNFTDto outNFTDto);
 
    FebsResponse orderList(ApiOrderListDto apiOrderListDto);
 
    FebsResponse orderSell(ApiOrderSellInfoDto apiOrderSellInfoDto);
 
    FebsResponse orderBuy(ApiOrderBuyInfoDto apiOrderBuyInfoDto);
 
    FebsResponse orderBuyInsure(ApiOrderBuyInsureDto apiOrderBuyInsureDto);
 
    FebsResponse orderSellInsure(ApiOrderSellInsureDto apiOrderSellInsureDto);
}