|
@@ -43,7 +43,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
/**
|
|
|
* 查询企业租户列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(BizProcessCompletion bizProcessCompletion) throws NoSuchFieldException, IllegalAccessException {
|
|
|
setTenantId(bizProcessCompletion);
|
|
@@ -52,7 +52,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:list')")
|
|
|
@GetMapping("/listStatistics")
|
|
|
public TableDataInfo listStatistics(CompleteStatistics completeStatistics) throws NoSuchFieldException, IllegalAccessException {
|
|
|
List<CompleteStatistics> list = completeStatisticsService.getList(completeStatistics);
|
|
@@ -65,7 +65,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
/**
|
|
|
* 导出企业租户列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:export')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:export')")
|
|
|
@Log(title = "企业租户", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, BizProcessCompletion bizProcessCompletion) throws NoSuchFieldException, IllegalAccessException {
|
|
@@ -78,7 +78,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
/**
|
|
|
* 获取企业租户详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:query')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
|
return success(bizProcessCompletionService.getById(id));
|
|
@@ -87,7 +87,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
/**
|
|
|
* 新增企业租户
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:add')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:add')")
|
|
|
@Log(title = "企业租户", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody BizProcessCompletion bizProcessCompletion) throws NoSuchFieldException, IllegalAccessException {
|
|
@@ -98,7 +98,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
/**
|
|
|
* 修改企业租户
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:edit')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:edit')")
|
|
|
@Log(title = "企业租户", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody BizProcessCompletion bizProcessCompletion) throws NoSuchFieldException, IllegalAccessException {
|
|
@@ -109,7 +109,7 @@ public class BizProcessCompletionController extends BaseController {
|
|
|
/**
|
|
|
* 删除企业租户
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:completion:remove')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:completion:remove')")
|
|
|
@Log(title = "企业租户", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable List<Long> ids) {
|