|
@@ -59,11 +59,12 @@ public class BizTechnologicalProcessDetailController extends BaseController
|
|
|
/**
|
|
|
* 获取工艺工序中间表详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('base:technologicalProcessDetail:query')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('base:technologicalProcessDetail:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
|
- return success(bizTechnologicalProcessDetailService.getById(id));
|
|
|
+ BizTechnologicalProcessDetail byId = bizTechnologicalProcessDetailService.getById(id);
|
|
|
+ return success(byId);
|
|
|
}
|
|
|
|
|
|
/**
|