¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.eam.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.eam.entity.EamInspectionOrder; |
| | | import org.jeecg.modules.eam.request.EamInspectionOrderQuery; |
| | | import org.jeecg.modules.eam.request.EamInspectionOrderRequest; |
| | | import org.jeecg.modules.eam.vo.InspectionVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: ç¹æ£å·¥å |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-04-02 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IEamInspectionOrderService extends IService<EamInspectionOrder> { |
| | | |
| | | /** |
| | | * æ°å¢ç¹æ£å·¥å |
| | | * @param eamInspectionOrderRequest |
| | | * @return |
| | | */ |
| | | boolean addInspectionOrder(EamInspectionOrderRequest eamInspectionOrderRequest); |
| | | |
| | | /** |
| | | * ç¼è¾ç¹æ£å·¥å |
| | | * @param eamInspectionOrderRequest |
| | | * @return |
| | | */ |
| | | boolean editInspectionOrder(EamInspectionOrderRequest eamInspectionOrderRequest); |
| | | |
| | | /** |
| | | * é¢åç¹æ£å·¥å |
| | | * @param id |
| | | * @return |
| | | */ |
| | | boolean takeInspectionOrder(String id); |
| | | |
| | | /** |
| | | * ä½åºç¹æ£å·¥å |
| | | * @param id |
| | | * @return |
| | | */ |
| | | boolean cancelInspectionOrder(String id); |
| | | |
| | | /** |
| | | * æ¹éä½åºä¸é¢å |
| | | * @param ids |
| | | * @param type |
| | | * @return |
| | | */ |
| | | Result<?> batchCancelOrTakeInspectionOrder(String ids, String type); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç¹æ£å·¥ååºæ¬ä¿¡æ¯ |
| | | * @param id |
| | | * @return |
| | | */ |
| | | Result<?> selectVoById(String id); |
| | | |
| | | /** |
| | | * ç¹æ£æµç¨ |
| | | * @param eamInspectionOrderRequest |
| | | * @return |
| | | */ |
| | | EamInspectionOrder inspectionProcess(EamInspectionOrderRequest eamInspectionOrderRequest); |
| | | |
| | | /** |
| | | * å页æ¥è¯¢ |
| | | * @param page |
| | | * @param query |
| | | * @return |
| | | */ |
| | | IPage<EamInspectionOrder> queryPageList(Page<EamInspectionOrder> page, EamInspectionOrderQuery query); |
| | | |
| | | /** |
| | | * è·åæªç¹æ£çå·¥å |
| | | * @param expiredDate è¿ææ¥æ |
| | | * @return |
| | | */ |
| | | List<EamInspectionOrder> selectUnCompleteOrder(String expiredDate); |
| | | |
| | | /** |
| | | * ç¹æ£æ¥è¡¨ new |
| | | */ |
| | | List<InspectionVo> findInspectionResult(String equipmentId, String itemDemand,String yearMonth); |
| | | |
| | | List<InspectionVo> findInspectionUser(String equipmentId,String yearMonth); |
| | | |
| | | List<Map<String,Object>> findInspectionStandard(String equipmentId); |
| | | } |