Browse Source

供应商产能报表更新字段

huxy 1 year ago
parent
commit
2d2cb0b1bc

+ 4 - 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/scas/entity/SupplierCapacity.java

@@ -33,6 +33,10 @@ public class SupplierCapacity {
     @ApiModelProperty(value = "款号")
     private String itemNumber;//款号
 
+    @Excel(name = "最终客户", width = 30)
+    @ApiModelProperty(value = "最终客户")
+    private String cdefine11;//最终客户
+
     @Excel(name = "业务员", width = 30)
     @ApiModelProperty(value = "业务员")
     private String cPersonCode;//业务员

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

@@ -42,4 +42,8 @@ public class SupplierCapacityVo4 {
     @ApiModelProperty(value = "系数")
     private BigDecimal coefficient;//系数
 
+    @Excel(name = "最终客户", width = 30)
+    @ApiModelProperty(value = "最终客户")
+    private String cdefine11;//最终客户
+
 }

+ 1 - 1
jeecg-boot-module-system/src/main/java/org/jeecg/modules/scas/mapper/xml/SupplierCapacityMapper.xml

@@ -203,7 +203,7 @@
 
     <select id="excel004" resultType="org.jeecg.modules.scas.entity.vo.SupplierCapacityVo4">
          --供应商	月份	数量	累计入库数量	能耗(能耗相加的汇总)
-        select cPlanLotNumber,cDepCode,itemNumber,cPersonCode,cVenCode,iQuantity,darrivedate,coefficient
+        select cPlanLotNumber,cDepCode,itemNumber,cPersonCode,cVenCode,iQuantity,darrivedate,coefficient,cdefine11
         from Supplier_Capacity_Test p
         ${ew.customSqlSegment}
     </select>