|
|
@@ -4,6 +4,8 @@ import java.util.Date;
|
|
|
|
|
|
import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
|
|
|
/**
|
|
|
@@ -150,7 +152,7 @@ public class PatentApplicationFeeBo {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getFunds() {
|
|
|
return funds;
|
|
|
}
|
|
|
@@ -158,7 +160,8 @@ public class PatentApplicationFeeBo {
|
|
|
public void setFunds(Integer funds) {
|
|
|
this.funds = funds;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
public Integer getReimbursement() {
|
|
|
return reimbursement;
|
|
|
}
|