package com.mes.hollow.entity.dto; import lombok.Data; /** * @Author : zhoush * @Date: 2024/11/25 18:53 * @Description: */ @Data public class LackDetailsDTO { /** * 流程卡 */ private String flowCardId; /** * 流程卡 */ private int layer; /** * 流程卡 */ private int glassType; /** * 膜系 */ private String filmsId; /** * 宽度 */ private double width; /** * 高度 */ private double height; /** * /*厚度 */ private Double thickness; /** * /*总片数 */ private Integer totalCount; /** * /*缺少片数 */ private Integer lackCount; /** * /*破损片数 */ private Integer damageCount; /** * /*补片数量 */ private Integer patchCount; }