2022-07-20 15:29:54 +08:00
|
|
|
|
package com.cnbm.basic.excel;
|
|
|
|
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 机台表
|
|
|
|
|
*
|
|
|
|
|
* @author why
|
|
|
|
|
* @since 2022-07-15
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
public class MachineExcel {
|
2022-08-05 16:46:33 +08:00
|
|
|
|
// @Excel(name = "ID")
|
|
|
|
|
// private Long id;
|
2022-07-20 15:29:54 +08:00
|
|
|
|
@Excel(name = "机台名")
|
|
|
|
|
private String name;
|
|
|
|
|
@Excel(name = "机台编码")
|
|
|
|
|
private String code;
|
2022-08-05 16:46:33 +08:00
|
|
|
|
// @Excel(name = "机台id,关联platform id")
|
|
|
|
|
// private Long platformId;
|
|
|
|
|
@Excel(name = "站点")
|
|
|
|
|
private String platformName;
|
|
|
|
|
// @Excel(name = "1 可用,0 不可用")
|
|
|
|
|
// private Integer status;
|
2022-07-20 15:29:54 +08:00
|
|
|
|
@Excel(name = "备注")
|
|
|
|
|
private String remark;
|
2022-08-05 16:46:33 +08:00
|
|
|
|
// @Excel(name = "删除标志,是否有效:1 可用 0不可用")
|
|
|
|
|
// private Integer valid;
|
|
|
|
|
// @Excel(name = "创建人")
|
|
|
|
|
// private Long creatorId;
|
|
|
|
|
// @Excel(name = "创建人姓名")
|
|
|
|
|
// private String creatorName;
|
|
|
|
|
// @Excel(name = "创建时间")
|
|
|
|
|
// private LocalDateTime createTime;
|
|
|
|
|
// @Excel(name = "更新人")
|
|
|
|
|
// private Long updaterId;
|
|
|
|
|
// @Excel(name = "更新人姓名")
|
|
|
|
|
// private String updaterName;
|
|
|
|
|
// @Excel(name = "更新时间")
|
|
|
|
|
// private LocalDateTime updateTime;
|
|
|
|
|
// @Excel(name = "版本号")
|
|
|
|
|
// private Integer version;
|
2022-07-20 15:29:54 +08:00
|
|
|
|
|
|
|
|
|
}
|