package com.example.erp.dto.pp;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
public class TeamOutputDTO {
|
@ExcelProperty("报工时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime reportingWorkTime;
|
@ExcelProperty("报工工序")
|
private String thisProcess;
|
@ExcelProperty("报工班组")
|
private String teamsGroupsName;
|
@ExcelProperty("项目名称")
|
private String project;
|
@ExcelProperty("流程卡号")
|
private String processId;
|
@ExcelProperty("序号")
|
private String orderNumber;
|
@ExcelProperty("宽")
|
private String width;
|
@ExcelProperty("高")
|
private String height;
|
// @ExcelProperty("形状")
|
// private String shape;
|
// @ExcelProperty("厚度")
|
// private String thickness;
|
@ExcelProperty("磨边类型")
|
private String edgingType;
|
@ExcelProperty("完工数量")
|
private String completedQuantity;
|
@ExcelProperty("完工面积")
|
private String area;
|
@ExcelProperty("产品名称")
|
private String productName;
|
@ExcelProperty("编号")
|
private String code;
|
@ExcelProperty("审核人")
|
private String reviewed;
|
@ExcelProperty("审核时间")
|
private String examineTime;
|
@ExcelProperty("在制品名称")
|
private String workProcessName;
|
@ExcelProperty("报工设备")
|
private String deviceName;
|
}
|