|
@@ -479,6 +479,8 @@ public class BillSubsidyServiceImpl extends ServiceImpl<BillSubsidyMapper, BillS
|
|
|
}else {
|
|
|
RejectApplication lastApplication = new RejectApplication();
|
|
|
lastApplication.setTitle("待支付");
|
|
|
+ lastApplication.setReason("");
|
|
|
+ lastApplication.setStatus(true);
|
|
|
result.add(lastApplication);
|
|
|
}
|
|
|
}else if (billSubsidy.getSubsidySch() == 4){
|
|
@@ -531,8 +533,10 @@ public class BillSubsidyServiceImpl extends ServiceImpl<BillSubsidyMapper, BillS
|
|
|
appealApplication.setReason("申诉内容描述: "+billSubsidy.getAppeal());
|
|
|
result.add(appealApplication);
|
|
|
|
|
|
- BaseApplication lastApplication = new BaseApplication();
|
|
|
+ RejectApplication lastApplication = new RejectApplication();
|
|
|
lastApplication.setTitle("待受理");
|
|
|
+ lastApplication.setStatus(true);
|
|
|
+ lastApplication.setReason("");
|
|
|
result.add(lastApplication);
|
|
|
}
|
|
|
return new Result(ResultCode.SUCCESS,result);
|