zyy
2025-08-28 76388afc59b66335dcf630e5ed30beccbe7aeb5b
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
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);
 
  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<PageInfo> getSecondAgent(int paramInt1, int paramInt2, HttpServletRequest paramHttpServletRequest);
 
  ServerResponse<PageInfo> 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<List<AgentUser>> getParensAgent();
 
  int CountAgentNum();
 
  List<AgentUser> getAgentSuperiorList(int agentId);
 
  ServerResponse updateAgentAmt(Integer paramInteger1, Integer paramInteger2, Integer paramInteger3);
  ServerResponse delAgent(Integer agentId);
 
  ServerResponse count(HttpServletRequest request);
}