package com.aps.core.domain;
|
|
import com.aps.common.core.annotation.Excel;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
@Data
|
@Schema(description = "钣金统计大表")
|
public class ApsPlateProcessShopPlanStat implements Serializable {
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
|
/** 主键id */
|
@Schema(description = "主键id", type = "String")
|
private String id;
|
/** 主件料号 */
|
@Schema(description = "主件料号", type = "String")
|
@Excel(name = "主件料号")
|
private String mainPartNumber;
|
|
/** 业务类型 */
|
@Schema(description = "业务类型", type = "String")
|
@Excel(name = "业务类型")
|
private String businessType;
|
|
/** 单据号 */
|
@Schema(description = "单据号", type = "String")
|
@Excel(name = "单据号")
|
private String documentNumber;
|
|
/** 需求分类 */
|
@Schema(description = "需求分类", type = "String")
|
@Excel(name = "需求分类")
|
private String requirementType;
|
|
/** 单据状态 */
|
@Schema(description = "单据状态", type = "String")
|
@Excel(name = "单据状态")
|
private String documentStatus;
|
|
/** 当前工序 */
|
@Schema(description = "当前工序", type = "String")
|
@Excel(name = "当前工序")
|
private String workCenter;
|
|
|
/** 料号 */
|
@Excel(name = "料号")
|
@Schema(description = "料号", type = "String")
|
private String itemNumber;
|
|
/** 图号 */
|
@Schema(description = "图号", type = "String")
|
@Excel(name = "图号")
|
private String drawingNo;
|
|
/** 版本号 */
|
@Schema(description = "版本号", type = "String")
|
@Excel(name = "版本号")
|
private String versionNumber;
|
|
/** 生产数量 */
|
@Schema(description = "生产数量", type = "String")
|
@Excel(name = "生产数量")
|
private BigDecimal productionQuantity;
|
|
/** 计划完工日 */
|
@Schema(description = "计划完工日", type = "String")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "计划完工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date planEndDay;
|
|
private List<ApsPlateProcessShopStat> deptPlans=new ArrayList<>();
|
}
|