package com.nq.service; import com.github.pagehelper.PageInfo; import com.nq.common.ServerResponse; import com.nq.pojo.AgentUser; import javax.servlet.http.HttpServletRequest; import java.util.List; public interface IAgentUserService { AgentUser getCurrentAgent(HttpServletRequest paramHttpServletRequest); AgentUser findByCode(String paramString); ServerResponse login(String paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest); ServerResponse getAgentInfo(HttpServletRequest paramHttpServletRequest) throws Exception; ServerResponse updatePwd(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest); ServerResponse addAgentUser(String paramString1, String paramString2, String paramString3, String paramString4, Integer parentId, String paramString5, String paramString6, String paramString7, HttpServletRequest paramHttpServletRequest); ServerResponse getSecondAgent(int paramInt1, int paramInt2, HttpServletRequest paramHttpServletRequest); ServerResponse listByAdmin(String paramString1, String paramString2, int paramInt1, int paramInt2, int paramInt3, HttpServletRequest paramHttpServletRequest); ServerResponse add(AgentUser paramAgentUser, HttpServletRequest paramHttpServletRequest); ServerResponse update(AgentUser paramAgentUser); ServerResponse updateOnlineServices(String paramAgentUser,int agentId); ServerResponse> getParensAgent(); int CountAgentNum(); List getAgentSuperiorList(int agentId); ServerResponse updateAgentAmt(Integer paramInteger1, Integer paramInteger2, Integer paramInteger3); ServerResponse delAgent(Integer agentId); ServerResponse count(HttpServletRequest request); }