|
@@ -0,0 +1,38 @@
|
|
|
+package com.rtrh.projects.vo.projects;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class SubFixBeginVo {
|
|
|
+
|
|
|
+ private Integer total;
|
|
|
+
|
|
|
+ private Integer aTotal;
|
|
|
+
|
|
|
+ private Integer bTotal;
|
|
|
+
|
|
|
+ private Integer cTotal;
|
|
|
+
|
|
|
+ private Integer dTotal;
|
|
|
+
|
|
|
+ private Integer kgTotal;
|
|
|
+
|
|
|
+ private Integer rgTotal;
|
|
|
+
|
|
|
+ private BigDecimal zhl;
|
|
|
+
|
|
|
+ private BigDecimal kfgl;
|
|
|
+
|
|
|
+ private BigDecimal rgl;
|
|
|
+
|
|
|
+ private BigDecimal tcl;
|
|
|
+
|
|
|
+ private List<SubFixTotalVo> subjectIdList;
|
|
|
+
|
|
|
+ private List<SubFixTotalVo> indusKindList;
|
|
|
+
|
|
|
+}
|