| | |
| | | /** |
| | | * 获取生产工单详细信息 |
| | | */ |
| | | // @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)); |
| | | } |
| | | |
| | | /** |