|
@@ -41,7 +41,7 @@ public class QwWorkTaskController extends BaseController
|
|
|
/**
|
|
|
* 查询企微任务看板列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:list')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(QwWorkTaskListParam qwWorkTask)
|
|
|
{
|
|
@@ -61,7 +61,7 @@ public class QwWorkTaskController extends BaseController
|
|
|
/**
|
|
|
* 导出企微任务看板列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:export')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:export')")
|
|
|
@Log(title = "企微任务看板", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
public AjaxResult export(QwWorkTask qwWorkTask)
|
|
@@ -74,7 +74,7 @@ public class QwWorkTaskController extends BaseController
|
|
|
/**
|
|
|
* 获取企微任务看板详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:query')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
@@ -84,7 +84,7 @@ public class QwWorkTaskController extends BaseController
|
|
|
/**
|
|
|
* 新增企微任务看板
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:add')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:add')")
|
|
|
@Log(title = "企微任务看板", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody QwWorkTask qwWorkTask)
|
|
@@ -95,7 +95,7 @@ public class QwWorkTaskController extends BaseController
|
|
|
/**
|
|
|
* 修改企微任务看板
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:edit')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:edit')")
|
|
|
@Log(title = "企微任务看板处理", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody QwWorkTask qwWorkTask)
|
|
@@ -111,7 +111,7 @@ public class QwWorkTaskController extends BaseController
|
|
|
/**
|
|
|
* 删除企微任务看板
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('qw:QwWorkTask:remove')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('qw:qw:QwWorkTask:remove')")
|
|
|
@Log(title = "企微任务看板", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|