|
|
|
@ -235,7 +235,7 @@ public class ToolInventoryRecordController extends DafController { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取对象编号 |
|
|
|
|
* 获取工器具明细 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/getDetailList") |
|
|
|
|
@ApiOperationSupport(order = 12) |
|
|
|
@ -245,4 +245,15 @@ public class ToolInventoryRecordController extends DafController { |
|
|
|
|
return R.data(DetailList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取对象编号 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/getToolsCodeId") |
|
|
|
|
@ApiOperationSupport(order = 12) |
|
|
|
|
@ApiOperation(value = "获取工器具信息", notes = "获取工器具信息") |
|
|
|
|
public R<ToolInventoryRecord> getToolsCodeId(String toolsCodeId) { |
|
|
|
|
ToolInventoryRecord DetailList = toolInventoryRecordService.getToolsCodeId("'" + toolsCodeId + "'"); |
|
|
|
|
return R.data(DetailList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|