OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2021-12-15 de2abff4377c9ee83161c954a51de4c9390fff76
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
package kr.wisestone.owl.mapper;
 
import kr.wisestone.owl.domain.User;
import kr.wisestone.owl.web.condition.UserCondition;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by wisestone on 2018-02-26.
 */
@Repository
public interface UserMapper {
    List<Map<String, Object>> find(UserCondition userCondition);
 
    List<Map<String, Object>> findAdmin();
 
    List<Map<String, Object>> findProjectMember(UserCondition userCondition);
 
    Long count(UserCondition userCondition);
 
    void deleteCascadeUser(UserCondition userCondition);
 
    List<Map<String, Object>> findByReservationNotifyTime(Map<String, Object> conditions);
 
    List<Map<String, Object>> findByRealTimeNotifyTime(Map<String, Object> conditions);
 
    List<Map<String, Object>> findByAllWorkspace(UserCondition userCondition);
 
    Long countByAllWorkspace(UserCondition userCondition);
 
    List<Map<String, Object>> findEvent();
 
    Long findByLevelId(Long levelId);
 
    Map<String, Object> findByMyLevelAndDepartment(Long id);
}