对比新文件 |
| | |
| | | package org.jeecg.modules.tms.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.jeecg.common.api.vo.CommonGenericTree; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.tms.entity.ToolsClassify; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.tms.entity.Warehouse; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: tms_tools_classify |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-05-06 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IToolsClassifyService extends IService<ToolsClassify> { |
| | | |
| | | IPage<ToolsClassify> queryPageList(Page<ToolsClassify> page, Map<String, String[]> parameterMap); |
| | | |
| | | public List<CommonGenericTree> loadTree(); |
| | | |
| | | ModelAndView toolClassifyExport(HttpServletRequest request, ToolsClassify toolsClassify, Class<ToolsClassify> clazz, String title); |
| | | |
| | | Result<?> toolClassifyImportExcel(HttpServletRequest request, HttpServletResponse response) throws IOException; |
| | | |
| | | } |