|
|
@@ -34,7 +34,7 @@ public class CaseApplicationController extends BaseController {
|
|
34
|
34
|
/**
|
|
35
|
35
|
* 查询立案数据
|
|
36
|
36
|
*/
|
|
37
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:list')")
|
|
|
37
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:list')")
|
|
38
|
38
|
@GetMapping("/list")
|
|
39
|
39
|
public TableDataInfo list(CaseApplication caseApplication)
|
|
40
|
40
|
{
|
|
|
@@ -46,7 +46,7 @@ public class CaseApplicationController extends BaseController {
|
|
46
|
46
|
/**
|
|
47
|
47
|
* 新增立案数据
|
|
48
|
48
|
*/
|
|
49
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:add')")
|
|
|
49
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:add')")
|
|
50
|
50
|
@Log(title = "新增立案数据", businessType = BusinessType.INSERT)
|
|
51
|
51
|
@PostMapping("/addCaseApplication")
|
|
52
|
52
|
public AjaxResult addCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -62,7 +62,7 @@ public class CaseApplicationController extends BaseController {
|
|
62
|
62
|
/**
|
|
63
|
63
|
* 修改立案数据
|
|
64
|
64
|
*/
|
|
65
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:edit')")
|
|
|
65
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:update')")
|
|
66
|
66
|
@Log(title = "修改立案数据", businessType = BusinessType.UPDATE)
|
|
67
|
67
|
@PostMapping("/editCaseApplication")
|
|
68
|
68
|
public AjaxResult editCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -75,7 +75,7 @@ public class CaseApplicationController extends BaseController {
|
|
75
|
75
|
/**
|
|
76
|
76
|
* 提交立案申请
|
|
77
|
77
|
*/
|
|
78
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:submit')")
|
|
|
78
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:submit')")
|
|
79
|
79
|
@Log(title = "提交立案申请", businessType = BusinessType.UPDATE)
|
|
80
|
80
|
@PostMapping("/submitCaseApplication")
|
|
81
|
81
|
public AjaxResult submitCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -87,7 +87,7 @@ public class CaseApplicationController extends BaseController {
|
|
87
|
87
|
/**
|
|
88
|
88
|
* 删除立案数据
|
|
89
|
89
|
*/
|
|
90
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:remove')")
|
|
|
90
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:delete')")
|
|
91
|
91
|
@Log(title = "删除立案数据", businessType = BusinessType.DELETE)
|
|
92
|
92
|
@PostMapping("/removeCaseApplication")
|
|
93
|
93
|
public AjaxResult removeCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -99,6 +99,7 @@ public class CaseApplicationController extends BaseController {
|
|
99
|
99
|
/**
|
|
100
|
100
|
* 查询立案信息
|
|
101
|
101
|
*/
|
|
|
102
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:detail')")
|
|
102
|
103
|
@PostMapping("/selectCaseApplication")
|
|
103
|
104
|
public AjaxResult selectCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
104
|
105
|
{
|
|
|
@@ -117,7 +118,7 @@ public class CaseApplicationController extends BaseController {
|
|
117
|
118
|
}
|
|
118
|
119
|
|
|
119
|
120
|
@Log(title = "立案信息导入", businessType = BusinessType.IMPORT)
|
|
120
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:import')")
|
|
|
121
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:import')")
|
|
121
|
122
|
@PostMapping("/importData")
|
|
122
|
123
|
public AjaxResult importData(MultipartFile file) throws Exception {
|
|
123
|
124
|
ExcelUtil<CaseApplication> util = new ExcelUtil<CaseApplication>(CaseApplication.class);
|
|
|
@@ -141,7 +142,7 @@ public class CaseApplicationController extends BaseController {
|
|
141
|
142
|
/**
|
|
142
|
143
|
* 组庭审核
|
|
143
|
144
|
*/
|
|
144
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:pendTralCheck')")
|
|
|
145
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:checkgroup')")
|
|
145
|
146
|
@Log(title = "组庭审核", businessType = BusinessType.UPDATE)
|
|
146
|
147
|
@PostMapping("/pendTralCheck")
|
|
147
|
148
|
public AjaxResult pendTralCheck(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -152,7 +153,7 @@ public class CaseApplicationController extends BaseController {
|
|
152
|
153
|
/**
|
|
153
|
154
|
* 组庭确认
|
|
154
|
155
|
*/
|
|
155
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:pendTralSure')")
|
|
|
156
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:confirmgroup')")
|
|
156
|
157
|
@Log(title = "组庭确认", businessType = BusinessType.UPDATE)
|
|
157
|
158
|
@PostMapping("/pendTralSure")
|
|
158
|
159
|
public AjaxResult pendTralSure(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -198,7 +199,7 @@ public class CaseApplicationController extends BaseController {
|
|
198
|
199
|
/**
|
|
199
|
200
|
* 提交立案审查
|
|
200
|
201
|
*/
|
|
201
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:submitCaseApplicationCheck')")
|
|
|
202
|
+ @PreAuthorize("@ss.hasPermi('caseManagement:check')")
|
|
202
|
203
|
@Log(title = "提交立案审查", businessType = BusinessType.UPDATE)
|
|
203
|
204
|
@PostMapping("/submitCaseApplicationCheck")
|
|
204
|
205
|
public AjaxResult submitCaseApplicationCheck(@Validated @RequestBody CaseApplication caseApplication)
|