|
@@ -11,7 +11,6 @@ import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
-import java.time.LocalDateTime;
|
|
|
|
|
import java.time.format.DateTimeFormatter;
|
|
import java.time.format.DateTimeFormatter;
|
|
|
import java.util.HashMap;
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@@ -431,6 +430,14 @@ public class CalculatePremiumResponse extends BaseResponse implements Serializab
|
|
|
|
|
|
|
|
@JsonProperty("taxpayerName")
|
|
@JsonProperty("taxpayerName")
|
|
|
private String taxpayerName;
|
|
private String taxpayerName;
|
|
|
|
|
+
|
|
|
|
|
+ public String getPreviousPay() {
|
|
|
|
|
+ return StringUtils.isEmpty(previousPay) ? "0" : previousPay;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getLateFee() {
|
|
|
|
|
+ return StringUtils.isEmpty(lateFee) ? "0" : lateFee;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|