|
|
@@ -36,7 +36,7 @@ public class CaseApplicationController extends BaseController {
|
|
36
|
36
|
/**
|
|
37
|
37
|
* 查询立案数据
|
|
38
|
38
|
*/
|
|
39
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:list')")
|
|
|
39
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:list')")
|
|
40
|
40
|
@GetMapping("/list")
|
|
41
|
41
|
public TableDataInfo list(CaseApplication caseApplication)
|
|
42
|
42
|
{
|
|
|
@@ -48,7 +48,7 @@ public class CaseApplicationController extends BaseController {
|
|
48
|
48
|
/**
|
|
49
|
49
|
* 新增立案数据
|
|
50
|
50
|
*/
|
|
51
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:add')")
|
|
|
51
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:add')")
|
|
52
|
52
|
@Log(title = "新增立案数据", businessType = BusinessType.INSERT)
|
|
53
|
53
|
@PostMapping("/addCaseApplication")
|
|
54
|
54
|
public AjaxResult addCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -64,7 +64,7 @@ public class CaseApplicationController extends BaseController {
|
|
64
|
64
|
/**
|
|
65
|
65
|
* 修改立案数据
|
|
66
|
66
|
*/
|
|
67
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:edit')")
|
|
|
67
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:update')")
|
|
68
|
68
|
@Log(title = "修改立案数据", businessType = BusinessType.UPDATE)
|
|
69
|
69
|
@PostMapping("/editCaseApplication")
|
|
70
|
70
|
public AjaxResult editCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -77,7 +77,7 @@ public class CaseApplicationController extends BaseController {
|
|
77
|
77
|
/**
|
|
78
|
78
|
* 提交立案申请
|
|
79
|
79
|
*/
|
|
80
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:submit')")
|
|
|
80
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:submit')")
|
|
81
|
81
|
@Log(title = "提交立案申请", businessType = BusinessType.UPDATE)
|
|
82
|
82
|
@PostMapping("/submitCaseApplication")
|
|
83
|
83
|
public AjaxResult submitCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -89,7 +89,7 @@ public class CaseApplicationController extends BaseController {
|
|
89
|
89
|
/**
|
|
90
|
90
|
* 删除立案数据
|
|
91
|
91
|
*/
|
|
92
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:remove')")
|
|
|
92
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:delete')")
|
|
93
|
93
|
@Log(title = "删除立案数据", businessType = BusinessType.DELETE)
|
|
94
|
94
|
@PostMapping("/removeCaseApplication")
|
|
95
|
95
|
public AjaxResult removeCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -101,6 +101,7 @@ public class CaseApplicationController extends BaseController {
|
|
101
|
101
|
/**
|
|
102
|
102
|
* 查询立案信息
|
|
103
|
103
|
*/
|
|
|
104
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:detail')")
|
|
104
|
105
|
@PostMapping("/selectCaseApplication")
|
|
105
|
106
|
public AjaxResult selectCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
106
|
107
|
{
|
|
|
@@ -119,7 +120,7 @@ public class CaseApplicationController extends BaseController {
|
|
119
|
120
|
}
|
|
120
|
121
|
|
|
121
|
122
|
@Log(title = "立案信息导入", businessType = BusinessType.IMPORT)
|
|
122
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:import')")
|
|
|
123
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:import')")
|
|
123
|
124
|
@PostMapping("/importData")
|
|
124
|
125
|
public AjaxResult importData(MultipartFile file) throws Exception {
|
|
125
|
126
|
ExcelUtil<CaseApplication> util = new ExcelUtil<CaseApplication>(CaseApplication.class);
|
|
|
@@ -143,7 +144,7 @@ public class CaseApplicationController extends BaseController {
|
|
143
|
144
|
/**
|
|
144
|
145
|
* 组庭审核
|
|
145
|
146
|
*/
|
|
146
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:pendTralCheck')")
|
|
|
147
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:checkgroup')")
|
|
147
|
148
|
@Log(title = "组庭审核", businessType = BusinessType.UPDATE)
|
|
148
|
149
|
@PostMapping("/pendTralCheck")
|
|
149
|
150
|
public AjaxResult pendTralCheck(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -154,7 +155,7 @@ public class CaseApplicationController extends BaseController {
|
|
154
|
155
|
/**
|
|
155
|
156
|
* 组庭确认
|
|
156
|
157
|
*/
|
|
157
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:pendTralSure')")
|
|
|
158
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:confirmgroup')")
|
|
158
|
159
|
@Log(title = "组庭确认", businessType = BusinessType.UPDATE)
|
|
159
|
160
|
@PostMapping("/pendTralSure")
|
|
160
|
161
|
public AjaxResult pendTralSure(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -200,7 +201,7 @@ public class CaseApplicationController extends BaseController {
|
|
200
|
201
|
/**
|
|
201
|
202
|
* 提交立案审查
|
|
202
|
203
|
*/
|
|
203
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:submitCaseApplicationCheck')")
|
|
|
204
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:check')")
|
|
204
|
205
|
@Log(title = "提交立案审查", businessType = BusinessType.UPDATE)
|
|
205
|
206
|
@PostMapping("/submitCaseApplicationCheck")
|
|
206
|
207
|
public AjaxResult submitCaseApplicationCheck(@Validated @RequestBody CaseApplication caseApplication)
|