Xiaojh 4 years ago
parent
commit
7d3d9c25db

+ 20 - 0
smart-city-platform/src/main/java/com/bz/smart_city/entity/pay/RecordInfo.java

@@ -0,0 +1,20 @@
+package com.bz.smart_city.entity.pay;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.math.BigDecimal;
+
+@Data
+@ApiModel("计算比率")
+public class RecordInfo {
+    @ApiModelProperty(value = "收入总数")
+    public BigDecimal income;
+    @ApiModelProperty(value = "较上月比率")
+    public String rate;
+    @ApiModelProperty(value = "是否上升、下降")
+    public Integer isUp;
+    @ApiModelProperty(value = "收入总数")
+    public float count;
+}