src/main/java/org/jeecg/modules/mes/service/IMesWorkReportingService.java
@@ -3,6 +3,8 @@ import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.mes.entity.MesWorkReporting; import java.util.List; /** * @Description: 工单报工 * @Author: jeecg-boot @@ -10,5 +12,6 @@ * @Version: V1.0 */ public interface IMesWorkReportingService extends IService<MesWorkReporting> { List<MesWorkReporting> queryWorkReportingByWorkOrderId(String workOrderId); List<MesWorkReporting> queryWorkReportingByOrderId(String orderId); }