| 
					
				 | 
			
			
				@@ -46,7 +46,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 查询退学申请列表 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:list')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:list')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @GetMapping("/list") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation("退学申请审批列表接口") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public TableDataInfo list(ApplyListParam param) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -59,7 +59,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 查询退学申请列表 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:mylist')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:mylist')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @GetMapping("/myList") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation("我的退学申请列表接口") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public TableDataInfo myList(ApplyListParam param) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -75,7 +75,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 获取退学申请详细信息 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:query')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:query')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @GetMapping(value = "/{id}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public AjaxResult getInfo(@PathVariable("id") Long id) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -85,7 +85,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 新增退学申请 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:add')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:add')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Log(title = "退学申请", businessType = BusinessType.INSERT) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation("新增退学申请接口") 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -97,7 +97,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 修改退学申请 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:edit')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:edit')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Log(title = "退学申请", businessType = BusinessType.UPDATE) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PutMapping 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public AjaxResult edit(@RequestBody StuQuitSchoolApply stuQuitSchoolApply) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -108,7 +108,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 删除退学申请 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:remove')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:remove')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Log(title = "退学申请", businessType = BusinessType.DELETE) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	@DeleteMapping("/{ids}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public AjaxResult remove(@PathVariable Long[] ids) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -119,7 +119,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 退学审批 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:approval')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:approval')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Log(title = "退学申请", businessType = BusinessType.UPDATE) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PutMapping("/approval") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation(value = "退学审批") 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -139,7 +139,7 @@ public class StuQuitSchoolApplyController extends BaseController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      * 完成退学 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				      */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    @PreAuthorize("@ss.hasPermi('apply:quit:finish')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    //@PreAuthorize("@ss.hasPermi('apply:quit:finish')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Log(title = "退学申请", businessType = BusinessType.UPDATE) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PutMapping("/finish") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiOperation(value = "完成退学") 
			 |