|
@@ -36,7 +36,6 @@ public class TBrithstaffmgrController extends BaseController
|
|
|
/**
|
|
|
* 查询生日提醒列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('plant:brithstaffmgr:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(TBrithstaffmgr tBrithstaffmgr)
|
|
|
{
|
|
@@ -48,7 +47,6 @@ public class TBrithstaffmgrController extends BaseController
|
|
|
/**
|
|
|
* 导出生日提醒列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('plant:brithstaffmgr:export')")
|
|
|
@Log(title = "生日提醒", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
public AjaxResult export(TBrithstaffmgr tBrithstaffmgr)
|
|
@@ -61,7 +59,6 @@ public class TBrithstaffmgrController extends BaseController
|
|
|
/**
|
|
|
* 获取生日提醒详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('plant:brithstaffmgr:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
@@ -71,7 +68,6 @@ public class TBrithstaffmgrController extends BaseController
|
|
|
/**
|
|
|
* 新增生日提醒
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('plant:brithstaffmgr:add')")
|
|
|
@Log(title = "生日提醒", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody TBrithstaffmgr tBrithstaffmgr)
|
|
@@ -82,7 +78,6 @@ public class TBrithstaffmgrController extends BaseController
|
|
|
/**
|
|
|
* 修改生日提醒
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('plant:brithstaffmgr:edit')")
|
|
|
@Log(title = "生日提醒", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody TBrithstaffmgr tBrithstaffmgr)
|
|
@@ -93,7 +88,6 @@ public class TBrithstaffmgrController extends BaseController
|
|
|
/**
|
|
|
* 删除生日提醒
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('plant:brithstaffmgr:remove')")
|
|
|
@Log(title = "生日提醒", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|