|
|
@@ -486,6 +486,11 @@ public class StudentPaymentRouteOrderServiceImpl extends BaseServiceImpl<Long, S
|
|
|
HttpResponseResult httpResponseResult = new HttpResponseResult();
|
|
|
httpResponseResult.setData(studentPaymentRouteOrders);
|
|
|
httpResponseResult.setMsg(sb.toString());
|
|
|
+ if(StringUtils.isNotEmpty(sb.toString())){
|
|
|
+ httpResponseResult.setCode(0);
|
|
|
+ }else {
|
|
|
+ httpResponseResult.setCode(200);
|
|
|
+ }
|
|
|
return httpResponseResult;
|
|
|
}
|
|
|
|