¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentStatisticalDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentStatisticalShiftInfo; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 设å¤åæ¥ç次è¿è¡æ°æ®è¡¨ |
| | | * @author: LiuS |
| | | * @create: 2023-07-24 10:32 |
| | | */ |
| | | public interface IMdcEquipmentStatisticalShiftInfoService extends IService<MdcEquipmentStatisticalShiftInfo> { |
| | | |
| | | /** |
| | | * 计ç®è®¾å¤åæ¥ç次è¿è¡æ°æ® |
| | | * |
| | | * @param dateTime |
| | | */ |
| | | void runningAllEquipmentShiftStatisticalProcess(String dateTime); |
| | | |
| | | /** |
| | | * æ¥è¯¢ä¸»è½´è¿è¡æ¶é´ |
| | | * |
| | | * @param equipmentId |
| | | * @param validDate |
| | | * @return |
| | | */ |
| | | BigDecimal findSpindleRunDuration(String equipmentId, String validDate); |
| | | |
| | | MdcEquipmentStatisticalDto findByEquipmentAndMonth(String equipmentId, String date); |
| | | |
| | | List<MdcEquipmentStatisticalDto> findShiftByEquipmentAndMonth(String equipmentId, String date); |
| | | } |