|
@@ -0,0 +1,33 @@
|
|
|
+package org.jeecg.modules.Index.entity;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * ClassName: LreDataInfoVO
|
|
|
+ * Package: org.jeecg.modules.Index.entity
|
|
|
+ * Description:
|
|
|
+ *
|
|
|
+ * @Author sl
|
|
|
+ * @Create 2023/9/22 11:53
|
|
|
+ * @Version 1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class LreDataInfoVO {
|
|
|
+ /*年总利润*/
|
|
|
+ private BigDecimal lreYearTotal;
|
|
|
+ /*上年同期总利润*/
|
|
|
+ private BigDecimal lreYearTq;
|
|
|
+ /*同比增长率*/
|
|
|
+ private BigDecimal lreYearTb;
|
|
|
+ /*当月利润*/
|
|
|
+ private BigDecimal lreMonthTotal;
|
|
|
+ /*当月同比*/
|
|
|
+ private BigDecimal lreMonthTb;
|
|
|
+ /*当月环比*/
|
|
|
+ private BigDecimal lreMonthHb;
|
|
|
+ /*某个时间段的利润*/
|
|
|
+ private List<BigDecimal> lreByDate;
|
|
|
+}
|