mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.service_equipment.service;
 
import com.panzhihua.common.model.dtos.equipment.UnionUserDto;
import com.panzhihua.common.model.vos.LoginUserInfoVO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.service_equipment.model.dos.UnionUser;
 
import java.util.Map;
 
public interface UnionUserService {
 
 
    /**
     * 总工会户外劳登录
     *
     * @param loginUserInfoVO
     * @return 总工会户外劳共用户
     */
     R<UnionUser> login(LoginUserInfoVO loginUserInfoVO);
 
    /**
     * 总工会户外劳工站用户认证
     *
     * @param unionUserDto
     * @return 总工会户外劳共用户
     */
     R authentication(UnionUserDto unionUserDto);
 
 
    /**
     * 总工会户外劳登录(h5)
     *
     * @param phone
     * @return 总工会户外劳共用户
     */
     R<Map<String, Object>> loginByUnion(String phone);
 
 
    /**
     * 使用id查找用户
     *
     * @param id
     * @return 总工会户外劳共用户
     */
    UnionUserDto  selectById(Long id);
 
    /**
     * 用户开门
     *
     * @return 总工会户外劳共用户
     */
    R openDoor(UnionUserDto unionUserDto,String qRCode);
 
}