|
@@ -37,7 +37,7 @@ public class BomanReservatController extends BaseController
|
|
|
/**
|
|
|
* 查询陵园预约列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:reservat:list')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('system:reservat:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(BomanReservat bomanReservat)
|
|
|
{
|
|
@@ -62,7 +62,7 @@ public class BomanReservatController extends BaseController
|
|
|
/**
|
|
|
* 获取陵园预约详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:reservat:query')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('system:reservat:query')")
|
|
|
@GetMapping(value = "/{reservatId}")
|
|
|
public AjaxResult getInfo(@PathVariable("reservatId") Long reservatId)
|
|
|
{
|
|
@@ -72,7 +72,7 @@ public class BomanReservatController extends BaseController
|
|
|
/**
|
|
|
* 新增陵园预约
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:reservat:add')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('system:reservat:add')")
|
|
|
@Log(title = "陵园预约", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody BomanReservat bomanReservat)
|