|
@@ -1,5 +1,6 @@
|
|
|
package org.jeecg.modules.Index.entity.vo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -10,6 +11,7 @@ public class IndexTotalVo {
|
|
|
/*年总*/
|
|
|
private BigDecimal yearTotal;
|
|
|
/*上年同期总*/
|
|
|
+
|
|
|
private BigDecimal yearTq;
|
|
|
/*同比增长率*/
|
|
|
private BigDecimal yearTb;
|
|
@@ -20,4 +22,6 @@ public class IndexTotalVo {
|
|
|
/*当月环比*/
|
|
|
private BigDecimal monthHb;
|
|
|
|
|
|
+ @JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
+ private BigDecimal monthTq;
|
|
|
}
|