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);
|
}
|