package com.product.data.center.entity;
|
|
|
import java.util.Date;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.format.DateTimeFormat;
|
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
|
/**
|
* SN追溯生成报表实体
|
* @author du
|
*
|
*/
|
@EqualsAndHashCode
|
public class TraceSNItemEntity {
|
|
@ExcelProperty("动作类型")
|
private String actionType;
|
|
@ExcelProperty("料号")
|
private String keyPartNo;
|
|
@ExcelProperty("*物料SN")
|
private String itemSN;
|
|
@ExcelProperty("品名")
|
private String assistantToolName;
|
|
@ExcelProperty("规格")
|
private String itemSpec;
|
|
@ExcelProperty("数量")
|
private Integer itemCount;
|
|
@DateTimeFormat("yyyy年MM月dd日 HH:mm:ss")
|
@ExcelProperty("作业时间")
|
private Date loadTime;
|
|
@ExcelProperty("作业员")
|
private String empName;
|
|
@ExcelProperty("工作中心")
|
private String stationName;
|
|
public String getActionType() {
|
return actionType;
|
}
|
|
public void setActionType(String actionType) {
|
this.actionType = actionType;
|
}
|
|
public String getKeyPartNo() {
|
return keyPartNo;
|
}
|
|
public void setKeyPartNo(String keyPartNo) {
|
this.keyPartNo = keyPartNo;
|
}
|
|
public String getItemSN() {
|
return itemSN;
|
}
|
|
public void setItemSN(String itemSN) {
|
this.itemSN = itemSN;
|
}
|
|
public String getAssistantToolName() {
|
return assistantToolName;
|
}
|
|
public void setAssistantToolName(String assistantToolName) {
|
this.assistantToolName = assistantToolName;
|
}
|
|
public String getItemSpec() {
|
return itemSpec;
|
}
|
|
public void setItemSpec(String itemSpec) {
|
this.itemSpec = itemSpec;
|
}
|
|
public Integer getItemCount() {
|
return itemCount;
|
}
|
|
public void setItemCount(Integer itemCount) {
|
this.itemCount = itemCount;
|
}
|
|
public Date getLoadTime() {
|
return loadTime;
|
}
|
|
public void setLoadTime(Date loadTime) {
|
this.loadTime = loadTime;
|
}
|
|
public String getEmpName() {
|
return empName;
|
}
|
|
public void setEmpName(String empName) {
|
this.empName = empName;
|
}
|
|
public String getStationName() {
|
return stationName;
|
}
|
|
public void setStationName(String stationName) {
|
this.stationName = stationName;
|
}
|
|
@Override
|
public String toString() {
|
return "TraceSNItemEntity [actionType=" + actionType + ", keyPartNo=" + keyPartNo + ", itemSN=" + itemSN
|
+ ", assistantToolName=" + assistantToolName + ", itemSpec=" + itemSpec + ", itemCount=" + itemCount
|
+ ", loadTime=" + loadTime + ", empName=" + empName + ", stationName=" + stationName + "]";
|
}
|
|
}
|