master
hanbo 2022-05-12 16:47:17 +08:00
parent 81d1be52a8
commit dbaa44efa7
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ public class EstimateBean extends IncomeCostBean{
*/
@Override
protected BigDecimal handleSpecial(BigDecimal src) {
return src;
return null == src ? new BigDecimal(0) : src;
}
}