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