|
|
@@ -37,7 +37,6 @@ public class GxtOrderScoreDetailController extends BaseController
|
|
|
/**
|
|
|
* 查询工单个人分数明细列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('gxt:orderScoreDetail:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(GxtOrderScoreDetail gxtOrderScoreDetail)
|
|
|
{
|
|
|
@@ -49,7 +48,6 @@ public class GxtOrderScoreDetailController extends BaseController
|
|
|
/**
|
|
|
* 导出工单个人分数明细列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('gxt:orderScoreDetail:export')")
|
|
|
@Log(title = "工单个人分数明细", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, GxtOrderScoreDetail gxtOrderScoreDetail)
|
|
|
@@ -62,7 +60,6 @@ public class GxtOrderScoreDetailController extends BaseController
|
|
|
/**
|
|
|
* 获取工单个人分数明细详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('gxt:orderScoreDetail:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
|
@@ -72,7 +69,6 @@ public class GxtOrderScoreDetailController extends BaseController
|
|
|
/**
|
|
|
* 新增工单个人分数明细
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('gxt:orderScoreDetail:add')")
|
|
|
@Log(title = "工单个人分数明细", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody GxtOrderScoreDetail gxtOrderScoreDetail)
|
|
|
@@ -83,7 +79,6 @@ public class GxtOrderScoreDetailController extends BaseController
|
|
|
/**
|
|
|
* 修改工单个人分数明细
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('gxt:orderScoreDetail:edit')")
|
|
|
@Log(title = "工单个人分数明细", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody GxtOrderScoreDetail gxtOrderScoreDetail)
|
|
|
@@ -94,7 +89,6 @@ public class GxtOrderScoreDetailController extends BaseController
|
|
|
/**
|
|
|
* 删除工单个人分数明细
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('gxt:orderScoreDetail:remove')")
|
|
|
@Log(title = "工单个人分数明细", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|