| | |
| | | package kr.wisestone.owl.mapper; |
| | | |
| | | import kr.wisestone.owl.web.condition.UserCondition; |
| | | import kr.wisestone.owl.web.condition.UserLevelCondition; |
| | | import org.springframework.stereotype.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(); |
| | | |