| | |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.modules.eam.entity.EquipmentPrecisionParameters; |
| | | import org.jeecg.modules.eam.entity.PrecisionInspectionDetail; |
| | | import org.jeecg.modules.eam.entity.PrecisionParameters; |
| | | import org.jeecg.modules.eam.service.IPrecisionInspectionDetailService; |
| | | import org.jeecg.modules.eam.service.IPrecisionParametersService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | |
| | | public class PrecisionInspectionDetailController extends JeecgController<PrecisionInspectionDetail, IPrecisionInspectionDetailService> { |
| | | @Autowired |
| | | private IPrecisionInspectionDetailService precisionInspectionDetailService; |
| | | |
| | | @Autowired |
| | | private IPrecisionParametersService precisionParametersService; |
| | | |
| | | /** |
| | | * 分页列表查询 |
| | |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { |
| | | return super.importExcel(request, response, PrecisionInspectionDetail.class); |
| | | } |
| | | |
| | | } |