|
|
@@ -44,7 +44,7 @@ public class CaseApplicationController extends BaseController {
|
|
44
|
44
|
/**
|
|
45
|
45
|
* 新增立案数据
|
|
46
|
46
|
*/
|
|
47
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:add')")
|
|
|
47
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:add')")
|
|
48
|
48
|
@Log(title = "新增立案数据", businessType = BusinessType.INSERT)
|
|
49
|
49
|
@PostMapping("/addCaseApplication")
|
|
50
|
50
|
public AjaxResult addCaseApplication(@Validated @RequestBody CaseApplication caseApplication)
|
|
|
@@ -57,7 +57,7 @@ public class CaseApplicationController extends BaseController {
|
|
57
|
57
|
/**
|
|
58
|
58
|
* 修改立案数据
|
|
59
|
59
|
*/
|
|
60
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:update')")
|
|
|
60
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:update')")
|
|
61
|
61
|
@Log(title = "修改立案数据", businessType = BusinessType.UPDATE)
|
|
62
|
62
|
@PostMapping("/editCaseApplication")
|
|
63
|
63
|
public AjaxResult editCaseApplication(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -69,7 +69,7 @@ public class CaseApplicationController extends BaseController {
|
|
69
|
69
|
/**
|
|
70
|
70
|
* 提交立案申请
|
|
71
|
71
|
*/
|
|
72
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:submit')")
|
|
|
72
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:submit')")
|
|
73
|
73
|
@Log(title = "提交立案申请", businessType = BusinessType.UPDATE)
|
|
74
|
74
|
@PostMapping("/submitCaseApplication")
|
|
75
|
75
|
public AjaxResult submitCaseApplication(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -80,7 +80,7 @@ public class CaseApplicationController extends BaseController {
|
|
80
|
80
|
/**
|
|
81
|
81
|
* 删除立案数据
|
|
82
|
82
|
*/
|
|
83
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:delete')")
|
|
|
83
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:delete')")
|
|
84
|
84
|
@Log(title = "删除立案数据", businessType = BusinessType.DELETE)
|
|
85
|
85
|
@PostMapping("/removeCaseApplication")
|
|
86
|
86
|
public AjaxResult removeCaseApplication(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -91,7 +91,7 @@ public class CaseApplicationController extends BaseController {
|
|
91
|
91
|
/**
|
|
92
|
92
|
* 查询立案信息
|
|
93
|
93
|
*/
|
|
94
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:detail')")
|
|
|
94
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:detail')")
|
|
95
|
95
|
@PostMapping("/selectCaseApplication")
|
|
96
|
96
|
public AjaxResult selectCaseApplication(@Validated @RequestBody CaseApplication caseApplication) {
|
|
97
|
97
|
CaseApplication caseApplicationselect = caseApplicationService.selectCaseApplication(caseApplication);
|
|
|
@@ -101,7 +101,7 @@ public class CaseApplicationController extends BaseController {
|
|
101
|
101
|
/**
|
|
102
|
102
|
* 查询签名链接
|
|
103
|
103
|
*/
|
|
104
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:selectSignUrl')")
|
|
|
104
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:selectSignUrl')")
|
|
105
|
105
|
@PostMapping("/selectSignUrl")
|
|
106
|
106
|
public AjaxResult selectSignUrl(@Validated @RequestBody CaseApplication caseApplication) throws EsignDemoException {
|
|
107
|
107
|
SealSignRecord sealSignRecordselect = caseApplicationService.selectSignUrl(caseApplication);
|
|
|
@@ -111,7 +111,7 @@ public class CaseApplicationController extends BaseController {
|
|
111
|
111
|
/**
|
|
112
|
112
|
* 查询用印链接
|
|
113
|
113
|
*/
|
|
114
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:selectSealUrl')")
|
|
|
114
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:selectSealUrl')")
|
|
115
|
115
|
@PostMapping("/selectSealUrl")
|
|
116
|
116
|
public AjaxResult selectSealUrl(@Validated @RequestBody CaseApplication caseApplication) throws EsignDemoException {
|
|
117
|
117
|
SealSignRecord sealUrlRecordselect = caseApplicationService.selectSealUrl(caseApplication);
|
|
|
@@ -128,7 +128,7 @@ public class CaseApplicationController extends BaseController {
|
|
128
|
128
|
}
|
|
129
|
129
|
|
|
130
|
130
|
@Log(title = "立案信息导入", businessType = BusinessType.IMPORT)
|
|
131
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:import')")
|
|
|
131
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:import')")
|
|
132
|
132
|
@PostMapping("/importData")
|
|
133
|
133
|
public AjaxResult importData(MultipartFile file) throws Exception {
|
|
134
|
134
|
if(file==null){
|
|
|
@@ -144,7 +144,7 @@ public class CaseApplicationController extends BaseController {
|
|
144
|
144
|
/**
|
|
145
|
145
|
* 组庭
|
|
146
|
146
|
*/
|
|
147
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:pendTral')")
|
|
|
147
|
+// @PreAuthorize("@ss.hasPermi('caseApplication:pendTral')")
|
|
148
|
148
|
@Log(title = "组庭", businessType = BusinessType.UPDATE)
|
|
149
|
149
|
@PostMapping("/pendTral")
|
|
150
|
150
|
public AjaxResult pendTral(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -154,7 +154,7 @@ public class CaseApplicationController extends BaseController {
|
|
154
|
154
|
/**
|
|
155
|
155
|
* 组庭审核
|
|
156
|
156
|
*/
|
|
157
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:checkgroup')")
|
|
|
157
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:checkgroup')")
|
|
158
|
158
|
@Log(title = "组庭审核", businessType = BusinessType.UPDATE)
|
|
159
|
159
|
@PostMapping("/pendTralCheck")
|
|
160
|
160
|
public AjaxResult pendTralCheck(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -164,7 +164,7 @@ public class CaseApplicationController extends BaseController {
|
|
164
|
164
|
/**
|
|
165
|
165
|
* 组庭确认
|
|
166
|
166
|
*/
|
|
167
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:confirmgroup')")
|
|
|
167
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:confirmgroup')")
|
|
168
|
168
|
@Log(title = "组庭确认", businessType = BusinessType.UPDATE)
|
|
169
|
169
|
@PostMapping("/pendTralSure")
|
|
170
|
170
|
public AjaxResult pendTralSure(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -174,7 +174,7 @@ public class CaseApplicationController extends BaseController {
|
|
174
|
174
|
/**
|
|
175
|
175
|
* 核验裁决书
|
|
176
|
176
|
*/
|
|
177
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:verificationArbitrateRecord')")
|
|
|
177
|
+// @PreAuthorize("@ss.hasPermi('caseApplication:verificationArbitrateRecord')")
|
|
178
|
178
|
@Log(title = "核验裁决书", businessType = BusinessType.UPDATE)
|
|
179
|
179
|
@PostMapping("/verificationArbitrateRecord")
|
|
180
|
180
|
public AjaxResult verificationArbitrateRecord(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -184,7 +184,7 @@ public class CaseApplicationController extends BaseController {
|
|
184
|
184
|
/**
|
|
185
|
185
|
* 审核裁决书
|
|
186
|
186
|
*/
|
|
187
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:checkArbitrateRecord')")
|
|
|
187
|
+// @PreAuthorize("@ss.hasPermi('caseApplication:checkArbitrateRecord')")
|
|
188
|
188
|
@Log(title = "审核裁决书", businessType = BusinessType.UPDATE)
|
|
189
|
189
|
@PostMapping("/checkArbitrateRecord")
|
|
190
|
190
|
public AjaxResult checkArbitrateRecord(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -195,7 +195,7 @@ public class CaseApplicationController extends BaseController {
|
|
195
|
195
|
/**
|
|
196
|
196
|
* 是否指派仲裁员
|
|
197
|
197
|
*/
|
|
198
|
|
- @PreAuthorize("@ss.hasPermi('caseApplication:pendingAppointArbotrar')")
|
|
|
198
|
+// @PreAuthorize("@ss.hasPermi('caseApplication:pendingAppointArbotrar')")
|
|
199
|
199
|
@Log(title = "是否指派仲裁员", businessType = BusinessType.UPDATE)
|
|
200
|
200
|
@PostMapping("/pendingAppointArbotrar")
|
|
201
|
201
|
public AjaxResult pendingAppointArbotrar(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -205,7 +205,7 @@ public class CaseApplicationController extends BaseController {
|
|
205
|
205
|
/**
|
|
206
|
206
|
* 提交立案审查
|
|
207
|
207
|
*/
|
|
208
|
|
- @PreAuthorize("@ss.hasPermi('caseManagement:list:check')")
|
|
|
208
|
+// @PreAuthorize("@ss.hasPermi('caseManagement:list:check')")
|
|
209
|
209
|
@Log(title = "提交立案审查", businessType = BusinessType.UPDATE)
|
|
210
|
210
|
@PostMapping("/submitCaseApplicationCheck")
|
|
211
|
211
|
public AjaxResult submitCaseApplicationCheck(@Validated @RequestBody CaseApplication caseApplication) {
|
|
|
@@ -216,7 +216,7 @@ public class CaseApplicationController extends BaseController {
|
|
216
|
216
|
/**
|
|
217
|
217
|
* 确认缴费查询立案信息
|
|
218
|
218
|
*/
|
|
219
|
|
- @PreAuthorize("@ss.hasPermi('paymentManagement:list:detail')")
|
|
|
219
|
+// @PreAuthorize("@ss.hasPermi('paymentManagement:list:detail')")
|
|
220
|
220
|
@PostMapping("/selectCaseApplicationConfirm")
|
|
221
|
221
|
public AjaxResult selectCaseApplicationConfirm(@Validated @RequestBody CaseApplication caseApplication) {
|
|
222
|
222
|
CaseApplication caseApplicationselect = caseApplicationService.selectCaseApplicationConfirm(caseApplication);
|