1
zj
2024-07-16 aac94d3eed9fc8f1958a24f06b3ca5c41fe11718
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
package com.nq.service;
 
 
import com.github.pagehelper.PageInfo;
import com.nq.common.ServerResponse;
import com.nq.pojo.SiteAdmin;
 
import javax.servlet.http.HttpServletRequest;
 
public interface ISiteAdminService {
  ServerResponse login(String paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest);
  
  ServerResponse<PageInfo> listByAdmin(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest, int paramInt1, int paramInt2);
  
  ServerResponse authCharge(String paramString1, Integer paramInteger, String paramString2);
  
  ServerResponse updateLock(Integer paramInteger);
  
  ServerResponse add(SiteAdmin paramSiteAdmin);
  
  ServerResponse update(SiteAdmin paramSiteAdmin);
  
  SiteAdmin findAdminByName(String paramString);
  
  SiteAdmin findAdminByPhone(String paramString);
  
  ServerResponse count();
 
  ServerResponse deleteAdmin(Integer adminId);
 
  ServerResponse moneyCount(String agentId,String startTime, String entTime);
 
  ServerResponse totalAgencyFunds(String agentId);
 
 
}