40 lines
816 B
Java
40 lines
816 B
Java
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
|
|
*
|
|
* @author klp
|
|
* @date 2026-03-14
|
|
*/
|
|
@Data
|
|
@ExcelIgnoreUnannotated
|
|
public class WmsFurnaceVo {
|
|
|
|
@ExcelProperty(value = "炉子ID")
|
|
private Long furnaceId;
|
|
|
|
@ExcelProperty(value = "炉编号")
|
|
private String furnaceCode;
|
|
|
|
@ExcelProperty(value = "名称")
|
|
private String furnaceName;
|
|
|
|
@ExcelProperty(value = "是否忙碌")
|
|
private Integer busyFlag;
|
|
|
|
@ExcelProperty(value = "状态")
|
|
private Integer status;
|
|
|
|
@ExcelProperty(value = "备注")
|
|
private String remark;
|
|
|
|
@ExcelProperty(value = "创建时间")
|
|
private Date createTime;
|
|
}
|