xiaoyong931011
2021-05-17 7572b8dbd4c41ca9b6437a032da2aa1a0fdd5444
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
package com.xcong.excoin.modules.yunding.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.member.entity.MemberAccountMoneyChangeEntity;
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.modules.yunding.entity.BasicSettingEntity;
import com.xcong.excoin.modules.yunding.entity.YdOrderEntity;
import com.xcong.excoin.modules.yunding.entity.YdProductEntity;
import com.xcong.excoin.modules.yunding.vo.YdAgentOrderVo;
import com.xcong.excoin.modules.yunding.vo.YdMemberVo;
 
public interface IBasicSettingService extends IService<BasicSettingEntity> {
 
    IPage<YdOrderEntity> getOrderList(YdOrderEntity ydOrderEntity, QueryRequest request);
 
    IPage<YdProductEntity> getYdProductList(YdProductEntity ydProductEntity, QueryRequest request);
 
    IPage<YdMemberVo> getYdMemberList(YdOrderEntity ydOrderEntity, QueryRequest request);
 
    IPage<YdAgentOrderVo> getAgentOrderList(YdOrderEntity ydOrderEntity, QueryRequest request);
 
    IPage<MemberAccountMoneyChangeEntity> seeAgentReturn(QueryRequest request, MemberEntity memberEntity);
 
    IPage<MemberAccountMoneyChangeEntity> seeReturn(QueryRequest request, MemberEntity memberEntity);
 
    IPage<YdOrderEntity> seeOrder(QueryRequest request, MemberEntity memberEntity);
 
    FebsResponse addIsTraderOn(Long id);
 
    FebsResponse delIsTraderOn(Long id);
 
    YdProductEntity getydProductUpdateById(long id);
 
    FebsResponse ydProductUpdateOn(YdProductEntity ydProductEntity);
}