| | |
| | | import kr.wisestone.owl.web.form.IspFieldForm; |
| | | import org.springframework.data.domain.Pageable; |
| | | import org.springframework.ui.Model; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | |
| | | |
| | | List<IspFieldVo> find(Map<String, Object> resJsonData, IspFieldCondition make, Pageable pageable); |
| | | |
| | | Map<String, Object> find(Long id); |
| | | |
| | | IspField getIsp(Long id); |
| | | |
| | | void detail(Map<String, Object> resJsonData, IspFieldCondition make); |
| | |
| | | void remove(IspFieldForm make); |
| | | |
| | | ModelAndView downloadExcel(HttpServletRequest request, Model model); |
| | | |
| | | ModelAndView downloadExcelTemplate(HttpServletRequest request, Model model); |
| | | |
| | | void importExcel(MultipartFile multipartFile) throws Exception; |
| | | |
| | | List<IspField> findAll(); |
| | | } |