|
@@ -33,7 +33,7 @@ public class ZhcxShipOffshoreController {
|
|
|
book = new Workbook(file.getInputStream());
|
|
|
StringBuilder errmsg = service.excelImport(book, request);
|
|
|
if (errmsg.toString().isEmpty()){
|
|
|
- return R.ok();
|
|
|
+ return R.ok("主表操作成功");
|
|
|
}else {
|
|
|
return R.error(errmsg.toString());
|
|
|
}
|
|
@@ -50,7 +50,7 @@ public class ZhcxShipOffshoreController {
|
|
|
book = new Workbook(file.getInputStream());
|
|
|
StringBuilder errmsg = service.detailExcelImport(book, request);
|
|
|
if (errmsg.toString().isEmpty()){
|
|
|
- return R.ok();
|
|
|
+ return R.ok("子表操作成功");
|
|
|
}else {
|
|
|
return R.error(errmsg.toString());
|
|
|
}
|