bingbo
2023-11-27 75c292340b20e71e30af074e3919e9b2d8d50d5b
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.thhy.staff.modules.biz.platuser.service;
 
import com.thhy.staff.modules.biz.applyhistory.entity.UserApplyHistory;
import com.thhy.staff.modules.biz.platuser.entity.*;
import org.springframework.web.bind.annotation.RequestBody;
 
import javax.servlet.http.HttpServletRequest;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 *  服务类
 * @author zhang_xiao_bo
 * @since 2023-03-30 12:49:45
 */
public interface PlatUserService {
 
    PlatUser get(Serializable id);
 
    List<PlatUserPullDown> queryForPullDown(PlatUserDto platUserDto);
 
    List<PlatUserPullDown> queryForPullDownDorm(PlatUserDto platUserDto);
 
    List<PlatUserListVo> findList(PlatUserDto platUserDto);
 
    List<PlatUserListVo> findListForExport(PlatUserDto platUserDto,String token);
 
    void addPlatUser(PlatUserDto platUserDto);
 
    void register(PlatUserDto platUserDto);
 
    Map<String,Object> checkuser(PlatUserDto platUserDto);
 
    void delete(Serializable userId);
 
    List<ApplyListVo> applyList(PlatUserDto platUserDto);
 
    Map<String,Object> applyDetail(PlatUserDto platUserDto);
 
    void apply(UserApplyHistory userApplyHistory);
 
    void testFace(FaceDto faceDto);
 
    void addFace(FaceDto faceDto);
 
    void delFace(FaceDto faceDto);
 
    void doorhis(String eventLog);
 
    Map<String,Object> faceRecord(String token);
 
    Map<String,Object> todayWorkUser(String token);
 
    Map<String,Object> groupUserWork(String token);
 
    void doorlisWithPic(DoorLisPic doorLisPic);
 
    List<HashMap<String,Object>> queryGroups();
 
    List<HashMap<String,Object>> queryHelmetWarn();
 
    List<AreaAdmin> areaAdminInfo();
}