| | |
| | | package com.jcdm.main.bs.orderScheduling.domain; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.HeadFontStyle; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | |
| | | * @date 2024-01-13 |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @ColumnWidth(16) |
| | | @HeadRowHeight(14) |
| | | @HeadFontStyle(fontHeightInPoints = 11) |
| | | public class BsOrderScheduling extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | |
| | | /** 订单编号 */ |
| | | @Excel(name = "订单编号") |
| | | @ExcelProperty(value = "订单编号", index = 0) |
| | | private String orderNo; |
| | | |
| | | /** 发动机号 */ |
| | | @Excel(name = "发动机号") |
| | | @Excel(name = "箱体编码") |
| | | @ExcelProperty(value = "箱体编码", index = 1) |
| | | private String engineNo; |
| | | |
| | | @TableField(exist = false) |
| | | @ExcelIgnore |
| | | private List<String> engineNoList; |
| | | |
| | | @TableField(exist = false) |
| | | @ExcelIgnore |
| | | private List<String> engineNoListExcel; |
| | | |
| | | |
| | | /** 产品类型 */ |
| | | @Excel(name = "产品类型") |
| | | private String productType; |
| | | |
| | | @ExcelProperty(value = "产品类型", index = 2) |
| | | private String productTypeString; |
| | | |
| | | /** 机型 */ |
| | | @Excel(name = "机型") |
| | | @ExcelProperty(value = "机型", index = 3) |
| | | private String model; |
| | | |
| | | /** 生产状态 */ |
| | | @Excel(name = "生产状态") |
| | | private String productionStatus; |
| | | |
| | | @ExcelProperty(value = "生产状态", index = 4) |
| | | private String productionStatusString; |
| | | |
| | | /** 工时 */ |
| | | @Excel(name = "工时") |
| | | @ExcelProperty(value = "工时", index = 5) |
| | | private String workingHours; |
| | | |
| | | /** 当前工位 */ |
| | | @Excel(name = "当前工位") |
| | | @ExcelProperty(value = "当前工位", index = 6) |
| | | private String currentWorkstation; |
| | | |
| | | /** 质量状态 */ |
| | | @Excel(name = "质量状态") |
| | | @ExcelProperty(value = "质量状态", index = 7) |
| | | private String qualityStatus; |
| | | |
| | | /** 是否打印 */ |
| | |
| | | |
| | | /** 10报工 */ |
| | | @Excel(name = "10报工") |
| | | @ExcelIgnore |
| | | private String report10; |
| | | |
| | | /** 20报工 */ |
| | | @Excel(name = "20报工") |
| | | @ExcelIgnore |
| | | private String report20; |
| | | |
| | | /** 合箱上线 */ |
| | | @Excel(name = "合箱上线") |
| | | @ExcelIgnore |
| | | private String combinedBoxTime; |
| | | |
| | | /** 总装下线 */ |
| | | @Excel(name = "总装下线") |
| | | @ExcelIgnore |
| | | private String finalAssemblyTime; |
| | | |
| | | /** 操作人 */ |
| | | @Excel(name = "操作人") |
| | | @ExcelProperty(value = "操作人", index = 14) |
| | | private String operator; |
| | | |
| | | /** 操作时间 */ |
| | | @Excel(name = "操作时间") |
| | | @ExcelProperty(value = "操作时间", index = 15) |
| | | private String operateTime; |
| | | |
| | | /** 状态 */ |
| | | @Excel(name = "状态") |
| | | @ExcelIgnore |
| | | private String status; |
| | | |
| | | /** 预留字段1 */ |
| | | @Excel(name = "预留字段1") |
| | | @ExcelIgnore |
| | | private String spareField1; |
| | | |
| | | /** 预留字段2 */ |
| | | @Excel(name = "预留字段2") |
| | | @ExcelIgnore |
| | | private String spareField2; |
| | | |
| | | /** 预留字段3 */ |
| | | @Excel(name = "预留字段3") |
| | | @ExcelIgnore |
| | | private String spareField3; |
| | | |
| | | /** 预留字段4 */ |
| | | @Excel(name = "预留字段4") |
| | | @ExcelIgnore |
| | | private String spareField4; |
| | | |
| | | /** 创建用户 */ |
| | | @Excel(name = "创建用户") |
| | | @ExcelIgnore |
| | | private String createUser; |
| | | |
| | | /** 更改用户 */ |
| | | @Excel(name = "更改用户") |
| | | @ExcelIgnore |
| | | private String updateUser; |
| | | |
| | | /** 备注 */ |
| | | @Excel(name = "备注") |
| | | @ExcelIgnore |
| | | private String remarks; |
| | | |
| | | /** CVT报工 */ |
| | | @Excel(name = "CVT报工") |
| | | @ExcelIgnore |
| | | private String report30; |
| | | |
| | | @ExcelIgnore |
| | | private String[] dateConditions; |
| | | |
| | | @ExcelIgnore |
| | | private String startTime; |
| | | |
| | | @ExcelIgnore |
| | | private String endTime; |
| | | |
| | | /** 合箱上线时间 */ |
| | | @Excel(name = "合箱上线时间") |
| | | @ExcelProperty(value = "合箱上线时间", index = 8) |
| | | @com.alibaba.excel.annotation.format.DateTimeFormat("yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date boxClosingOnlineTime; |
| | | |
| | | /** 合箱下线时间 */ |
| | | @Excel(name = "合箱下线时间") |
| | | @ExcelProperty(value = "合箱下线时间", index = 9) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date closingBoxOfflineTime; |
| | | |
| | | /** 总装上线时间 */ |
| | | @Excel(name = "总装上线时间") |
| | | @ExcelProperty(value = "总装上线时间", index =10) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date finalAssemblyLaunchTime; |
| | | |
| | | /** 总装下线时间 */ |
| | | @Excel(name = "总装下线时间") |
| | | @ExcelProperty(value = "总装下线时间", index = 11) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date finalAssemblyOfflineTime; |
| | | |
| | | /** CVT上线时间 */ |
| | | @Excel(name = "CVT上线时间") |
| | | @ExcelProperty(value = "CVT上线时间", index = 12) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date cvtLaunchTime; |
| | | |
| | | /** CVT下线时间 */ |
| | | @Excel(name = "CVT下线时间") |
| | | @ExcelProperty(value = "CVT下线时间", index = 13) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date cvtOfflineTime; |
| | | |
| | | @TableField(exist = false) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelIgnore |
| | | private LocalDateTime startQuery; |
| | | |
| | | @TableField(exist = false) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelIgnore |
| | | private LocalDateTime endQuery; |
| | | |
| | | @TableField(exist = false) |
| | | @ExcelIgnore |
| | | private String queryField; |
| | | |
| | | public Date getBoxClosingOnlineTime() { |