|
|
@@ -60,6 +60,7 @@ import tk.mybatis.mapper.entity.Example;
|
|
60
|
60
|
|
|
61
|
61
|
import javax.annotation.Resource;
|
|
62
|
62
|
import java.io.File;
|
|
|
63
|
+import java.io.IOException;
|
|
63
|
64
|
import java.time.LocalDate;
|
|
64
|
65
|
import java.util.*;
|
|
65
|
66
|
import java.util.stream.Collectors;
|
|
|
@@ -83,6 +84,8 @@ public class MsSignSealServiceImpl implements MsSignSealService {
|
|
83
|
84
|
MsCaseFlowMapper caseFlowMapper;
|
|
84
|
85
|
@Autowired
|
|
85
|
86
|
private SysUserMapper userMapper;
|
|
|
87
|
+ @Autowired
|
|
|
88
|
+ private MsCaseAttachMapper caseAttachMapper;
|
|
86
|
89
|
|
|
87
|
90
|
@Autowired
|
|
88
|
91
|
private SysUserMapper sysUserMapper;
|
|
|
@@ -1008,6 +1011,290 @@ public class MsSignSealServiceImpl implements MsSignSealService {
|
|
1008
|
1011
|
return AjaxResult.success(sealSignRecordres);
|
|
1009
|
1012
|
}
|
|
1010
|
1013
|
|
|
|
1014
|
+ @Override
|
|
|
1015
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
1016
|
+ public AjaxResult signSeaalCaseApplicaCallback(String reqbodystr) throws EsignDemoException, IOException {
|
|
|
1017
|
+
|
|
|
1018
|
+ System.out.println("请求参数reqbodystr:----------->>>>>>"+reqbodystr);
|
|
|
1019
|
+
|
|
|
1020
|
+ JSONObject jsonObjectCallback = JSONObject.parseObject(reqbodystr);
|
|
|
1021
|
+ Gson gson = new Gson();
|
|
|
1022
|
+ if (jsonObjectCallback != null) {
|
|
|
1023
|
+ int signResult = jsonObjectCallback.getIntValue("signResult");
|
|
|
1024
|
+ String action = jsonObjectCallback.getString("action");
|
|
|
1025
|
+ String signFlowId = jsonObjectCallback.getString("signFlowId");
|
|
|
1026
|
+ Long operateTime = jsonObjectCallback.getLongValue("operateTime");
|
|
|
1027
|
+ JSONObject operator = jsonObjectCallback.getJSONObject("operator");
|
|
|
1028
|
+ JSONObject psnAccount = operator.getJSONObject("psnAccount");
|
|
|
1029
|
+ String accountMobile = psnAccount.getString("accountMobile");
|
|
|
1030
|
+
|
|
|
1031
|
+ System.out.println("请求参数signResult:----------->>>>>>"+signResult);
|
|
|
1032
|
+ System.out.println("请求参数action:---------->>>>>>"+action);
|
|
|
1033
|
+ System.out.println("请求参数signFlowId:---------->>>>>>"+signFlowId);
|
|
|
1034
|
+ System.out.println("请求参数accountMobile:---------->>>>>>"+accountMobile);
|
|
|
1035
|
+
|
|
|
1036
|
+ Example msSealSignRecordExample = new Example(MsSealSignRecord.class);
|
|
|
1037
|
+ msSealSignRecordExample.createCriteria().andEqualTo("signFlowId", signFlowId);
|
|
|
1038
|
+ MsSealSignRecord sealSignRecordsel = sealSignRecordMapper.selectOneByExample(msSealSignRecordExample);
|
|
|
1039
|
+
|
|
|
1040
|
+ String pensonAccountApply = sealSignRecordsel.getPensonAccount();
|
|
|
1041
|
+ String orgnNamePsnAcc = sealSignRecordsel.getOrgnNamePsnAcc();
|
|
|
1042
|
+ String pensonAccountRes = sealSignRecordsel.getPensonAccountRes();
|
|
|
1043
|
+ String pensonAccountMedi = sealSignRecordsel.getPensonAccountMedi();
|
|
|
1044
|
+
|
|
|
1045
|
+ Integer signStatusApply = sealSignRecordsel.getSignStatusApply();
|
|
|
1046
|
+ Integer signStatusResponse = sealSignRecordsel.getSignStatusResponse();
|
|
|
1047
|
+ Integer signStatusMediator = sealSignRecordsel.getSignStatusMediator();
|
|
|
1048
|
+ Integer sealStatus = sealSignRecordsel.getSealStatus();
|
|
|
1049
|
+
|
|
|
1050
|
+ Long caseAppliId = sealSignRecordsel.getCaseAppliId();
|
|
|
1051
|
+ MsCaseApplication caseApplicationselect = msCaseApplicationMapper.selectByPrimaryKey(caseAppliId);
|
|
|
1052
|
+ Integer mediaResult = caseApplicationselect.getMediaResult();
|
|
|
1053
|
+
|
|
|
1054
|
+ if("SIGN_MISSON_COMPLETE".equals(action) && signResult==2){
|
|
|
1055
|
+ if(mediaResult.intValue()==1){
|
|
|
1056
|
+ //调解
|
|
|
1057
|
+ if(StringUtils.isNotEmpty(accountMobile)&&accountMobile.equals(pensonAccountApply)){
|
|
|
1058
|
+ //申请人签名
|
|
|
1059
|
+ sealSignRecordsel.setSignStatusApply(1);
|
|
|
1060
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1061
|
+ if(signStatusResponse!=null&&signStatusResponse.intValue()==1&&
|
|
|
1062
|
+ signStatusMediator!=null&&signStatusMediator.intValue()==1){
|
|
|
1063
|
+ // 根据流程id查找下一个流程节点
|
|
|
1064
|
+ MsCaseFlow nextFlow = caseFlowMapper.nextFlow(caseApplicationselect.getCaseFlowId().intValue());
|
|
|
1065
|
+ MsCaseApplication application = new MsCaseApplication();
|
|
|
1066
|
+ application.setId(caseApplicationselect.getId());
|
|
|
1067
|
+ application.setCaseFlowId(nextFlow.getId());
|
|
|
1068
|
+ application.setCaseStatusName(nextFlow.getCaseStatusName());
|
|
|
1069
|
+ caseApplicationMapper.updateByPrimaryKeySelective(application);
|
|
|
1070
|
+
|
|
|
1071
|
+ //修改"签署用印记录表"的状态为待用印
|
|
|
1072
|
+ sealSignRecordsel.setSignFlowStatus(2);
|
|
|
1073
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1074
|
+ }
|
|
|
1075
|
+ }else if(StringUtils.isNotEmpty(accountMobile)&&accountMobile.equals(pensonAccountRes)){
|
|
|
1076
|
+ //被申请人签名
|
|
|
1077
|
+ sealSignRecordsel.setSignStatusResponse(1);
|
|
|
1078
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1079
|
+ if(signStatusApply!=null&&signStatusApply.intValue()==1&&
|
|
|
1080
|
+ signStatusMediator!=null&&signStatusMediator.intValue()==1){
|
|
|
1081
|
+ // 根据流程id查找下一个流程节点
|
|
|
1082
|
+ MsCaseFlow nextFlow = caseFlowMapper.nextFlow(caseApplicationselect.getCaseFlowId().intValue());
|
|
|
1083
|
+ MsCaseApplication application = new MsCaseApplication();
|
|
|
1084
|
+ application.setId(caseApplicationselect.getId());
|
|
|
1085
|
+ application.setCaseFlowId(nextFlow.getId());
|
|
|
1086
|
+ application.setCaseStatusName(nextFlow.getCaseStatusName());
|
|
|
1087
|
+ caseApplicationMapper.updateByPrimaryKeySelective(application);
|
|
|
1088
|
+
|
|
|
1089
|
+ //修改"签署用印记录表"的状态为待用印
|
|
|
1090
|
+ sealSignRecordsel.setSignFlowStatus(2);
|
|
|
1091
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1092
|
+ }
|
|
|
1093
|
+ }else if(StringUtils.isNotEmpty(accountMobile)&&accountMobile.equals(pensonAccountMedi)){
|
|
|
1094
|
+ //调解员签名
|
|
|
1095
|
+ sealSignRecordsel.setSignStatusMediator(1);
|
|
|
1096
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1097
|
+ if(signStatusApply!=null&&signStatusApply.intValue()==1&&
|
|
|
1098
|
+ signStatusResponse!=null&&signStatusResponse.intValue()==1){
|
|
|
1099
|
+ // 根据流程id查找下一个流程节点
|
|
|
1100
|
+ MsCaseFlow nextFlow = caseFlowMapper.nextFlow(caseApplicationselect.getCaseFlowId().intValue());
|
|
|
1101
|
+ MsCaseApplication application = new MsCaseApplication();
|
|
|
1102
|
+ application.setId(caseApplicationselect.getId());
|
|
|
1103
|
+ application.setCaseFlowId(nextFlow.getId());
|
|
|
1104
|
+ application.setCaseStatusName(nextFlow.getCaseStatusName());
|
|
|
1105
|
+ caseApplicationMapper.updateByPrimaryKeySelective(application);
|
|
|
1106
|
+
|
|
|
1107
|
+ //修改"签署用印记录表"的状态为待用印
|
|
|
1108
|
+ sealSignRecordsel.setSignFlowStatus(2);
|
|
|
1109
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1110
|
+ }
|
|
|
1111
|
+ }else if(StringUtils.isNotEmpty(accountMobile)&&accountMobile.equals(orgnNamePsnAcc)){
|
|
|
1112
|
+ sealSignRecordsel.setSealStatus(1);
|
|
|
1113
|
+ sealSignRecordsel.setSignFlowStatus(3);
|
|
|
1114
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1115
|
+
|
|
|
1116
|
+ // 根据流程id查找下一个流程节点
|
|
|
1117
|
+ MsCaseFlow nextFlow = caseFlowMapper.nextFlow(caseApplicationselect.getCaseFlowId().intValue());
|
|
|
1118
|
+ MsCaseApplication application = new MsCaseApplication();
|
|
|
1119
|
+ application.setId(caseApplicationselect.getId());
|
|
|
1120
|
+ application.setCaseFlowId(nextFlow.getId());
|
|
|
1121
|
+ application.setCaseStatusName(nextFlow.getCaseStatusName());
|
|
|
1122
|
+ caseApplicationMapper.updateByPrimaryKeySelective(application);
|
|
|
1123
|
+
|
|
|
1124
|
+ //下载审核完成的调解书
|
|
|
1125
|
+ EsignHttpResponse fileDownload = SaaSAPIFileUtils.fileDownloadUrl(signFlowId);
|
|
|
1126
|
+ JsonObject fileDownloadJsonObject = gson.fromJson(fileDownload.getBody(), JsonObject.class);
|
|
|
1127
|
+ JsonObject fileDownloadData = fileDownloadJsonObject.getAsJsonObject("data");
|
|
|
1128
|
+ JsonArray filesArray = fileDownloadData.get("files").getAsJsonArray();
|
|
|
1129
|
+ if (filesArray != null && filesArray.size() > 0) {
|
|
|
1130
|
+ JsonObject fileObject = (JsonObject) filesArray.get(0);
|
|
|
1131
|
+ String fileDownloadUrl = fileObject.get("downloadUrl").toString();
|
|
|
1132
|
+ LocalDate now = LocalDate.now();
|
|
|
1133
|
+ String year = Integer.toString(now.getYear());
|
|
|
1134
|
+ String month = String.format("%02d", now.getMonthValue());
|
|
|
1135
|
+ String day = String.format("%02d", now.getDayOfMonth());
|
|
|
1136
|
+ String saveFolderPath = "/home/ruoyi/uploadPath/upload/" + year + "/" + month + "/" + day;
|
|
|
1137
|
+ String fileName = UUID.randomUUID().toString().replace("-", "") + ".pdf";
|
|
|
1138
|
+// String saveName = "/profile/upload/" + year + "/" + month + "/" + day + "/" + fileName;
|
|
|
1139
|
+// String savePath = "/home/ruoyi/uploadPath/upload/";
|
|
|
1140
|
+ String saveName = fileName;
|
|
|
1141
|
+ String savePath = "/profile/upload/" + year + "/" + month + "/" + day + "/" + fileName;
|
|
|
1142
|
+
|
|
|
1143
|
+ // 创建日期目录
|
|
|
1144
|
+ File saveFolder = new File(saveFolderPath);
|
|
|
1145
|
+ if (!saveFolder.exists()) {
|
|
|
1146
|
+ saveFolder.mkdirs();
|
|
|
1147
|
+ }
|
|
|
1148
|
+ String resultFilePath = saveFolderPath + "/" + fileName;
|
|
|
1149
|
+ File resultFilePathFile = new File(resultFilePath);
|
|
|
1150
|
+ if (!resultFilePathFile.exists()) {
|
|
|
1151
|
+ resultFilePathFile.createNewFile();
|
|
|
1152
|
+ }
|
|
|
1153
|
+
|
|
|
1154
|
+ String fileDownloadUrlnew = fileDownloadUrl.substring(1, fileDownloadUrl.length() - 1);
|
|
|
1155
|
+ boolean downLoadFile = FileTransformation.downLoadFileByUrl(fileDownloadUrlnew, resultFilePath);
|
|
|
1156
|
+ if (downLoadFile) {
|
|
|
1157
|
+ MsCaseAttach caseAttach = new MsCaseAttach();
|
|
|
1158
|
+ caseAttach.setCaseAppliId(caseAppliId);
|
|
|
1159
|
+ caseAttach.setAnnexType(7);
|
|
|
1160
|
+ caseAttach.setAnnexPath(savePath);
|
|
|
1161
|
+ caseAttach.setAnnexName(saveName);
|
|
|
1162
|
+ caseAttachMapper.updateCaseAttachBycaseid(caseAttach);
|
|
|
1163
|
+ }
|
|
|
1164
|
+
|
|
|
1165
|
+ }
|
|
|
1166
|
+ }
|
|
|
1167
|
+
|
|
|
1168
|
+ }else if(mediaResult.intValue()==5){
|
|
|
1169
|
+ //和解
|
|
|
1170
|
+ if(StringUtils.isNotEmpty(accountMobile)&&accountMobile.equals(pensonAccountApply)){
|
|
|
1171
|
+ //申请人签名
|
|
|
1172
|
+ sealSignRecordsel.setSignStatusApply(1);
|
|
|
1173
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1174
|
+ if(signStatusResponse!=null&&signStatusResponse.intValue()==1){
|
|
|
1175
|
+ MsCaseFlow nextFlow = caseFlowMapper.nextFlow1(caseApplicationselect.getCaseFlowId().intValue());
|
|
|
1176
|
+ MsCaseApplication application = new MsCaseApplication();
|
|
|
1177
|
+ application.setId(caseApplicationselect.getId());
|
|
|
1178
|
+ application.setCaseFlowId(nextFlow.getId());
|
|
|
1179
|
+ application.setCaseStatusName(nextFlow.getCaseStatusName());
|
|
|
1180
|
+ caseApplicationMapper.updateByPrimaryKeySelective(application);
|
|
|
1181
|
+
|
|
|
1182
|
+ //修改"签署用印记录表"的状态为完成
|
|
|
1183
|
+ sealSignRecordsel.setSignFlowStatus(3);
|
|
|
1184
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1185
|
+
|
|
|
1186
|
+ //下载审核完成的调解书
|
|
|
1187
|
+ EsignHttpResponse fileDownload = SaaSAPIFileUtils.fileDownloadUrl(signFlowId);
|
|
|
1188
|
+ JsonObject fileDownloadJsonObject = gson.fromJson(fileDownload.getBody(), JsonObject.class);
|
|
|
1189
|
+ JsonObject fileDownloadData = fileDownloadJsonObject.getAsJsonObject("data");
|
|
|
1190
|
+ JsonArray filesArray = fileDownloadData.get("files").getAsJsonArray();
|
|
|
1191
|
+ if (filesArray != null && filesArray.size() > 0) {
|
|
|
1192
|
+ JsonObject fileObject = (JsonObject) filesArray.get(0);
|
|
|
1193
|
+ String fileDownloadUrl = fileObject.get("downloadUrl").toString();
|
|
|
1194
|
+ LocalDate now = LocalDate.now();
|
|
|
1195
|
+ String year = Integer.toString(now.getYear());
|
|
|
1196
|
+ String month = String.format("%02d", now.getMonthValue());
|
|
|
1197
|
+ String day = String.format("%02d", now.getDayOfMonth());
|
|
|
1198
|
+ String saveFolderPath = "/home/ruoyi/uploadPath/upload/" + year + "/" + month + "/" + day;
|
|
|
1199
|
+ String fileName = UUID.randomUUID().toString().replace("-", "") + ".pdf";
|
|
|
1200
|
+// String saveName = "/profile/upload/" + year + "/" + month + "/" + day + "/" + fileName;
|
|
|
1201
|
+// String savePath = "/home/ruoyi/uploadPath/upload/";
|
|
|
1202
|
+ String saveName = fileName;
|
|
|
1203
|
+ String savePath = "/profile/upload/" + year + "/" + month + "/" + day + "/" + fileName;
|
|
|
1204
|
+
|
|
|
1205
|
+ // 创建日期目录
|
|
|
1206
|
+ File saveFolder = new File(saveFolderPath);
|
|
|
1207
|
+ if (!saveFolder.exists()) {
|
|
|
1208
|
+ saveFolder.mkdirs();
|
|
|
1209
|
+ }
|
|
|
1210
|
+ String resultFilePath = saveFolderPath + "/" + fileName;
|
|
|
1211
|
+ File resultFilePathFile = new File(resultFilePath);
|
|
|
1212
|
+ if (!resultFilePathFile.exists()) {
|
|
|
1213
|
+ resultFilePathFile.createNewFile();
|
|
|
1214
|
+ }
|
|
|
1215
|
+
|
|
|
1216
|
+ String fileDownloadUrlnew = fileDownloadUrl.substring(1, fileDownloadUrl.length() - 1);
|
|
|
1217
|
+ boolean downLoadFile = FileTransformation.downLoadFileByUrl(fileDownloadUrlnew, resultFilePath);
|
|
|
1218
|
+ if (downLoadFile) {
|
|
|
1219
|
+ MsCaseAttach caseAttach = new MsCaseAttach();
|
|
|
1220
|
+ caseAttach.setCaseAppliId(caseAppliId);
|
|
|
1221
|
+ caseAttach.setAnnexType(7);
|
|
|
1222
|
+ caseAttach.setAnnexPath(savePath);
|
|
|
1223
|
+ caseAttach.setAnnexName(saveName);
|
|
|
1224
|
+ caseAttachMapper.updateCaseAttachBycaseid(caseAttach);
|
|
|
1225
|
+ }
|
|
|
1226
|
+
|
|
|
1227
|
+ }
|
|
|
1228
|
+ }
|
|
|
1229
|
+ }else if(StringUtils.isNotEmpty(accountMobile)&&accountMobile.equals(pensonAccountRes)){
|
|
|
1230
|
+ //被申请人签名
|
|
|
1231
|
+ sealSignRecordsel.setSignStatusResponse(1);
|
|
|
1232
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1233
|
+ if(signStatusApply!=null&&signStatusApply.intValue()==1){
|
|
|
1234
|
+ MsCaseFlow nextFlow = caseFlowMapper.nextFlow1(caseApplicationselect.getCaseFlowId().intValue());
|
|
|
1235
|
+ MsCaseApplication application = new MsCaseApplication();
|
|
|
1236
|
+ application.setId(caseApplicationselect.getId());
|
|
|
1237
|
+ application.setCaseFlowId(nextFlow.getId());
|
|
|
1238
|
+ application.setCaseStatusName(nextFlow.getCaseStatusName());
|
|
|
1239
|
+ caseApplicationMapper.updateByPrimaryKeySelective(application);
|
|
|
1240
|
+
|
|
|
1241
|
+ //修改"签署用印记录表"的状态为完成
|
|
|
1242
|
+ sealSignRecordsel.setSignFlowStatus(3);
|
|
|
1243
|
+ sealSignRecordMapper.updateByPrimaryKeySelective(sealSignRecordsel);
|
|
|
1244
|
+
|
|
|
1245
|
+ //下载审核完成的调解书
|
|
|
1246
|
+ EsignHttpResponse fileDownload = SaaSAPIFileUtils.fileDownloadUrl(signFlowId);
|
|
|
1247
|
+ JsonObject fileDownloadJsonObject = gson.fromJson(fileDownload.getBody(), JsonObject.class);
|
|
|
1248
|
+ JsonObject fileDownloadData = fileDownloadJsonObject.getAsJsonObject("data");
|
|
|
1249
|
+ JsonArray filesArray = fileDownloadData.get("files").getAsJsonArray();
|
|
|
1250
|
+ if (filesArray != null && filesArray.size() > 0) {
|
|
|
1251
|
+ JsonObject fileObject = (JsonObject) filesArray.get(0);
|
|
|
1252
|
+ String fileDownloadUrl = fileObject.get("downloadUrl").toString();
|
|
|
1253
|
+ LocalDate now = LocalDate.now();
|
|
|
1254
|
+ String year = Integer.toString(now.getYear());
|
|
|
1255
|
+ String month = String.format("%02d", now.getMonthValue());
|
|
|
1256
|
+ String day = String.format("%02d", now.getDayOfMonth());
|
|
|
1257
|
+ String saveFolderPath = "/home/ruoyi/uploadPath/upload/" + year + "/" + month + "/" + day;
|
|
|
1258
|
+ String fileName = UUID.randomUUID().toString().replace("-", "") + ".pdf";
|
|
|
1259
|
+// String saveName = "/profile/upload/" + year + "/" + month + "/" + day + "/" + fileName;
|
|
|
1260
|
+// String savePath = "/home/ruoyi/uploadPath/upload/";
|
|
|
1261
|
+ String saveName = fileName;
|
|
|
1262
|
+ String savePath = "/profile/upload/" + year + "/" + month + "/" + day + "/" + fileName;
|
|
|
1263
|
+
|
|
|
1264
|
+ // 创建日期目录
|
|
|
1265
|
+ File saveFolder = new File(saveFolderPath);
|
|
|
1266
|
+ if (!saveFolder.exists()) {
|
|
|
1267
|
+ saveFolder.mkdirs();
|
|
|
1268
|
+ }
|
|
|
1269
|
+ String resultFilePath = saveFolderPath + "/" + fileName;
|
|
|
1270
|
+ File resultFilePathFile = new File(resultFilePath);
|
|
|
1271
|
+ if (!resultFilePathFile.exists()) {
|
|
|
1272
|
+ resultFilePathFile.createNewFile();
|
|
|
1273
|
+ }
|
|
|
1274
|
+
|
|
|
1275
|
+ String fileDownloadUrlnew = fileDownloadUrl.substring(1, fileDownloadUrl.length() - 1);
|
|
|
1276
|
+ boolean downLoadFile = FileTransformation.downLoadFileByUrl(fileDownloadUrlnew, resultFilePath);
|
|
|
1277
|
+ if (downLoadFile) {
|
|
|
1278
|
+ MsCaseAttach caseAttach = new MsCaseAttach();
|
|
|
1279
|
+ caseAttach.setCaseAppliId(caseAppliId);
|
|
|
1280
|
+ caseAttach.setAnnexType(7);
|
|
|
1281
|
+ caseAttach.setAnnexPath(savePath);
|
|
|
1282
|
+ caseAttach.setAnnexName(saveName);
|
|
|
1283
|
+ caseAttachMapper.updateCaseAttachBycaseid(caseAttach);
|
|
|
1284
|
+ }
|
|
|
1285
|
+
|
|
|
1286
|
+ }
|
|
|
1287
|
+ }
|
|
|
1288
|
+ }
|
|
|
1289
|
+ }
|
|
|
1290
|
+ }
|
|
|
1291
|
+
|
|
|
1292
|
+ }else{
|
|
|
1293
|
+ return AjaxResult.error("error");
|
|
|
1294
|
+ }
|
|
|
1295
|
+ return AjaxResult.success("success");
|
|
|
1296
|
+ }
|
|
|
1297
|
+
|
|
1011
|
1298
|
/**
|
|
1012
|
1299
|
* 通过邮件发送裁决书文件
|
|
1013
|
1300
|
*
|