xiaoyong931011
2023-10-13 7ecd2c9bb7b1a77fd2d55a59b2ce85c9ddb26ee7
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
49
50
51
52
53
54
55
56
package cc.mrbird.febs.mall.service;
 
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.entity.QueryRequest;
import cc.mrbird.febs.mall.dto.AdminSystemPayDto;
import cc.mrbird.febs.mall.entity.ChatUser;
import cc.mrbird.febs.mall.vo.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface IAdminChatService extends IService<ChatUser> {
 
    IPage<AdminChatUserVo> getUserList(ChatUser chatUser, QueryRequest request);
 
    FebsResponse openAccount(String userId);
 
    FebsResponse closeAccount(String userId);
 
    FebsResponse updateSystemPay(AdminSystemPayDto adminSystemPayDto);
 
    IPage<AdminChatAmountFlowVo> getFlowList(ChatUser chatUser, QueryRequest request);
 
    IPage<AdminChatCahrgeVo> getChargeList(ChatUser chatUser, QueryRequest request);
 
    IPage<AdminChatWithDrawVo> getWithdrawList(ChatUser chatUser, QueryRequest request);
 
    FebsResponse agreeEvent(String id);
 
    FebsResponse disagreeEvent(String id);
 
    FebsResponse openSwitchIsRobot(String userId);
 
    FebsResponse closeSwitchIsRobot(String userId);
 
    void updateDataDic(String type, String code, String modelType);
 
    IPage<AdminGroupVo> getGroupList(ChatUser chatUser, QueryRequest request);
 
    FebsResponse closeSwitchUseRobot(String id);
 
    FebsResponse openSwitchUseRobot(String id);
 
    FebsResponse updateGroupInfo(AdminGroupInfoVo adminGroupInfoVo);
 
    FebsResponse registerMember();
 
    FebsResponse openModelType(String userId);
 
    FebsResponse closeModelType(String userId);
 
    FebsResponse updateRegisterMember(AdminRegisterMemberVo adminRegisterMemberVo);
 
    FebsResponse openSwitchAutoSend(String id);
 
    FebsResponse closeSwitchAutoSend(String id);
}