Bladeren bron

供应商产能报表

huxy 2 jaren geleden
bovenliggende
commit
cc1d855228

+ 32 - 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/scas/entity/vo/SupplierCapacity5.java

@@ -0,0 +1,32 @@
+package org.jeecg.modules.scas.entity.vo;
+
+import lombok.Data;
+import org.jeecgframework.poi.excel.annotation.Excel;
+
+import java.math.BigDecimal;
+import java.text.SimpleDateFormat;
+
+@Data
+public class SupplierCapacity5 {
+    //剩余产能 已下产能 产能额度 产能百分比 供应商名称 部门名称 年月
+
+    @Excel(name = "剩余产能", width = 15)
+    private BigDecimal spareCapacity ;//部门
+    @Excel(name = "已下产能", width = 15)
+    private BigDecimal productionCapacity;//部门
+    @Excel(name = "产能额度", width = 15)
+    private BigDecimal quotaCapacity;//部门
+    @Excel(name = "产能百分比", width = 15)
+    private BigDecimal PercentageCapacity;//部门
+    @Excel(name = "供应商名称", width = 15)
+    private String venName;//部门
+    @Excel(name = "部门名称", width = 15)
+    private String depName;//部门
+    @Excel(name = "年月", width = 15)
+    private String yearMonth;//部门
+    @Excel(name = "年", width = 15)
+    private String year;//部门
+    @Excel(name = "月", width = 15) 
+    private String month;//部门
+
+}