|
@@ -37,7 +37,7 @@ public class OrderInfoItemDTO implements Serializable {
|
|
|
private Integer nums;
|
|
|
|
|
|
@JsonProperty("is_tax")
|
|
|
- private Boolean tax;
|
|
|
+ private String tax;
|
|
|
|
|
|
@JsonProperty("tax_price")
|
|
|
private BigDecimal taxPrice;
|
|
@@ -122,11 +122,11 @@ public class OrderInfoItemDTO implements Serializable {
|
|
|
this.nums = nums;
|
|
|
}
|
|
|
|
|
|
- public Boolean getTax() {
|
|
|
+ public String getTax() {
|
|
|
return tax;
|
|
|
}
|
|
|
|
|
|
- public void setTax(Boolean tax) {
|
|
|
+ public void setTax(String tax) {
|
|
|
this.tax = tax;
|
|
|
}
|
|
|
|