feat(export): 添加钢卷ID导出字段

- 在CoilTotalMergedExportVo中添加coilId字段用于导出
- 在WmsCoilWarehouseOperationLogExportVo中添加coilId字段用于导出
- 在WmsMaterialCoilAllExportVo中添加coilId字段用于导出
This commit is contained in:
2026-07-04 13:43:47 +08:00
parent eecb7fcae6
commit d42c4c5a94
3 changed files with 8 additions and 0 deletions

View File

@@ -31,4 +31,7 @@ public class CoilTotalMergedExportVo implements Serializable {
@ExcelProperty("总成本") @ExcelProperty("总成本")
private Double totalCost; private Double totalCost;
@ExcelProperty("钢卷ID")
private Long coilId;
} }

View File

@@ -103,4 +103,6 @@ public class WmsCoilWarehouseOperationLogExportVo {
@ExcelProperty(value = "锌层") @ExcelProperty(value = "锌层")
private String zincLayer; private String zincLayer;
@ExcelProperty(value = "钢卷ID")
private Long coilId;
} }

View File

@@ -248,4 +248,7 @@ public class WmsMaterialCoilAllExportVo {
@ExcelProperty(value = "厚度差") @ExcelProperty(value = "厚度差")
private String thicknessDifference; private String thicknessDifference;
@ExcelProperty(value = "钢卷ID")
private Long coilId;
} }