Commit 85321cfcc3b1ffe42b8c214d2d4bebf06e317d48

Authored by cfl
1 parent 612e6e99fa
Exists in master and in 2 other branches dev, luanping

接口调用提示语句修改

Showing 1 changed file with 4 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RemoteController.java View file @ 85321cf
... ... @@ -706,6 +706,9 @@
706 706 writeString(response,"success");
707 707 return;
708 708 }
  709 + else{
  710 + writeString(response,baseObjectResponse.getErrormsg());
  711 + }
709 712 }
710 713 catch (Exception e)
711 714 {
... ... @@ -713,7 +716,7 @@
713 716 e.printStackTrace();
714 717 return;
715 718 }
716   - writeString(response,"fail");
  719 +
717 720 }
718 721  
719 722