OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-11-02 4e32eef25c59e29af3966345bb5e71c12a886865
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
package kr.wisestone.owl.mapper;
 
import kr.wisestone.owl.web.condition.UserCondition;
import kr.wisestone.owl.web.condition.UserLevelCondition;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by wisestone on 2018-02-26.
 */
@Repository
public interface UserLevelMapper {
    List<Map<String, Object>> find(UserLevelCondition userLevelCondition);
 
    List<Map<String, Object>> findAdmin();
 
    List<Map<String, Object>> findProjectMember(UserLevelCondition userLevelCondition);
 
    Long count(UserLevelCondition userLevelCondition);
 
    void deleteCascadeUser(UserLevelCondition userLevelCondition);
 
    List<Map<String, Object>> findByReservationNotifyTime(Map<String, Object> conditions);
 
    List<Map<String, Object>> findByAllWorkspace(UserLevelCondition userLevelCondition);
 
    Long countByAllWorkspace(UserLevelCondition userLevelCondition);
 
    List<Map<String, Object>> findEvent();
 
}