Ver código fonte

修改部分导包路径

lingpeng.li 2 semanas atrás
pai
commit
afac4df110

+ 3 - 2
zgzt-sbsmzq/jeecg-module-lifecycle/src/main/java/org/jeecg/modules/specialEquipment/controller/SpecialDeviceCategoryController.java

@@ -5,9 +5,9 @@ import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.system.query.QueryGenerator;
-import org.jeecg.modules.specialDevice.dto.CategoryQueryDTO;
+import org.jeecg.modules.specialEquipment.dto.CategoryQueryDTO;
 import org.jeecg.modules.specialEquipment.entity.SpecialDeviceCategory;
-import org.jeecg.modules.specialDevice.service.ISpecialDeviceCategoryService;
+
 
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -15,6 +15,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import lombok.extern.slf4j.Slf4j;
 
 import org.jeecg.common.system.base.controller.JeecgController;
+import org.jeecg.modules.specialEquipment.service.ISpecialDeviceCategoryService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.servlet.ModelAndView;

+ 3 - 3
zgzt-sbsmzq/jeecg-module-lifecycle/src/main/java/org/jeecg/modules/specialEquipment/service/impl/SpecialDeviceCategoryServiceImpl.java

@@ -2,11 +2,11 @@ package org.jeecg.modules.specialEquipment.service.impl;
 
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
-import org.jeecg.modules.specialDevice.dto.CategoryQueryDTO;
+import org.jeecg.modules.specialEquipment.dto.CategoryQueryDTO;
 import org.jeecg.modules.specialEquipment.entity.SpecialDeviceCategory;
 import org.jeecg.modules.specialEquipment.mapper.SpecialDeviceCategoryMapper;
-import org.jeecg.modules.specialDevice.service.ISpecialDeviceCategoryService;
-import org.jeecg.modules.specialDevice.vo.SpecialDeviceCategoryVO;
+import org.jeecg.modules.specialEquipment.service.ISpecialDeviceCategoryService;
+import org.jeecg.modules.specialEquipment.vo.SpecialDeviceCategoryVO;
 import org.jeecg.modules.utils.TreeUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;