package com.chinaztt.mes.warehouse.dto;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
/**
|
* @Description : 每日工步报表DTO
|
* @ClassName : PackageReportDTO
|
* @Author : sll
|
* @Date: 2022-05-30 14:28
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
public class PackageReportDTO{
|
@ExcelProperty("日期")
|
private String createTime;
|
|
private Long stepId;
|
|
private Long partId;
|
private String stepName;
|
@ExcelProperty("人员名称")
|
private String staffName;
|
@ExcelProperty("包装数量")
|
private Integer stepCount;
|
@ExcelProperty("单位")
|
private String unit;
|
@ExcelProperty("零件编号")
|
private String partNo;
|
@ExcelProperty("零件名称")
|
private String partName;
|
|
private String startTime;
|
|
private String endTime;
|
}
|