Commit 96ad330d authored by 李灿灿's avatar 李灿灿

订单按钮权限

parent 012abc59
......@@ -87,8 +87,8 @@ public class OrderController {
*/
@Operation(summary = "通过id查询详情", description = "通过id查询详情")
@GetMapping("/{id}")
@PreAuthorize("@pms.hasPermission('order:order_getInsuranceDetailById')")
public R<OrderDetailVO> getInsuranceDetailById(@PathVariable("id") String id) {
@PreAuthorize("@pms.hasPermission('order:order_getOrderDetailById')")
public R<OrderDetailVO> getOrderDetailById(@PathVariable("id") String id) {
return tOrderService.getOrderDetailById(id);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment