package com.klp.domain.vo; import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; import java.util.Date; /** * 退火计划钢卷关系视图对象 wms_furnace_plan_coil * * @author klp * @date 2026-03-14 */ @Data @ExcelIgnoreUnannotated public class WmsFurnacePlanCoilVo { @ExcelProperty(value = "计划钢卷ID") private Long planCoilId; @ExcelProperty(value = "计划ID") private Long planId; @ExcelProperty(value = "钢卷ID") private Long coilId; @ExcelProperty(value = "入场钢卷号") private String enterCoilNo; @ExcelProperty(value = "实际库位ID") private Long actualWarehouseId; @ExcelProperty(value = "实际库位") private String actualWarehouseName; @ExcelProperty(value = "创建时间") private Date createTime; }