package com.mes.hollow.entity.dto; import lombok.Data; /** * @Author : zhoush * @Date: 2024/11/28 23:35 * @Description: */ @Data public class HollowGlassDetailsDTO { /** * 流程卡号 */ private String flowCardId; /** * 流程卡号 */ private Integer orderSort; /** * 宽度 */ private double width; /** * 高度 */ private double height; /** * /*厚度 */ private double thickness; /** * /*层数 */ private Integer layer; /** * 数量 */ private Integer quantity; /** * /*中空总次序 */ private Integer hollowSequence; }