| | |
| | | package org.jeecg.modules.mes.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mes.entity.MesWorkReporting; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 工单报工 |
| | |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface MesWorkReportingMapper extends BaseMapper<MesWorkReporting> { |
| | | |
| | | List<MesWorkReporting> queryWorkReportingByWorkOrderId(@Param("workOrderId") String workOrderId); |
| | | List<MesWorkReporting> queryWorkReportingByOrderId(@Param("orderId") String orderId); |
| | | } |