春风项目四线(合箱线、总装线)
yyt
2024-05-20 d4f4376ab5aef071cb841de0f9a9b7f6cb16c651
jcdm-main/src/main/java/com/jcdm/main/om/productionOrde/controller/OmProductionOrdeInfoController.java
@@ -81,11 +81,21 @@
    /**
     * 获取生产工单详细信息
     */
//    @PreAuthorize("@ss.hasPermi('om:productionOrde:query')")
//    @GetMapping(value = "/{id}")
//    public AjaxResult getInfo(@PathVariable("id") Long id)
//    {
//        return success(omProductionOrdeInfoService.selectOmProductionOrdeInfoById(id));
//    }
    /**
     * 获取生产工单详细信息
     */
    @PreAuthorize("@ss.hasPermi('om:productionOrde:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    @GetMapping("/{ids}")
    public AjaxResult getInfo(@PathVariable Long[] ids)
    {
        return success(omProductionOrdeInfoService.selectOmProductionOrdeInfoById(id));
        return success(omProductionOrdeInfoService.selectOmProductionOrdeInfoByIds(ids));
    }
    /**