KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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);
 
    FebsResponse orderBuyList(ApiOrderBuyDto apiOrderBuyDto);
 
    Boolean operationPermissionMemberFrozen(Long memberId);
 
    FebsResponse orderSellComplain(ApiOrderSellComplainDto apiOrderSellComplainDto);
 
    FebsResponse orderRecordList(ApiOrderRecordListDto apiOrderListDto);
 
    FebsResponse orderSellRecord(ApiOrderSellInfoDto apiOrderSellInfoDto);
 
    FebsResponse orderBuyRecord(ApiOrderBuyInfoDto apiOrderBuyInfoDto);
 
    FebsResponse transGfd(ApiTransGfdDto transGfdDto);
 
    FebsResponse gfdTrans(ApiGfdTransDto transGfdDto);
 
    FebsResponse orderSellList(ApiOrderSellDto apiOrderBuyDto);
}