Helius
2020-06-29 35086a393d3bf72d69d27fc412006270743d0da7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.agent.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.xcong.excoin.common.entity.QueryRequest;
import com.xcong.excoin.modules.agent.pojo.AgentUser;
import com.xcong.excoin.system.entity.User;
 
/**
 * @author helius
 */
public interface IAgentService {
 
    IPage<AgentUser> findAgentList(AgentUser agentUser, QueryRequest request);
 
    void addAgent(AgentUser agentUser, User user);
 
    void delAgent(String[] ids);
 
    void resetPwd(Long id);
 
    void editAgent(AgentUser agentUser, User user);
}