lyh
2 天以前 d61b21c50e62298f185ecafa8e0b22f7ee8c4973
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamInspectionOrderController.java
@@ -19,6 +19,7 @@
import org.jeecg.modules.eam.constant.InspectionItemCategroyEnum;
import org.jeecg.modules.eam.constant.InspectionStatus;
import org.jeecg.modules.eam.constant.OrderCreationMethodEnum;
import org.jeecg.modules.eam.dto.EamInspectionOrderExport;
import org.jeecg.modules.eam.entity.EamInspectionOrder;
import org.jeecg.modules.eam.entity.EamInspectionOrderDetail;
import org.jeecg.modules.eam.entity.EamMaintenanceStandardDetail;
@@ -364,4 +365,14 @@
        return eamInspectionOrderService.exportWeekInsOrderDetailUserList(equipmentCode, inspectionDate);
    }
    /**
     * 生产设备自主维护点检表打印
     * @param ids
     * @return
     */
    @ApiOperation(value = "生产设备自主维护点检表打印", notes = "生产设备自主维护点检表打印")
    @GetMapping("/printInspectionOrder")
    public Result<?> printInspectionOrder(String ids) {
        return Result.ok(eamInspectionOrderService.printInspectionOrder(ids));
    }
}