package com.mes.hollow.entity.dto; import lombok.Data; /** * @Author : zhoush * @Date: 2024/12/30 17:40 * @Description: */ @Data public class LisecHollowFrameDetails { public LisecHollowFrameDetails(String recType, String type, String width, String height) { this.recType = recType; this.type = type; this.width = width; this.height = height; } private String recType; //项目数量指数(如果所有记录相同,则为0) 用0填充即可 private String itemInx = "0"; //描述 任意字符填充 private String descript = "1"; //框架类型(0铝 1钢 2不锈钢 3塑料 4超间隔器 5tps 6t型垫片 7duralite 8duraseal 9瑞士菜 10iet 11gss 12triseal 13舒科 14chromatech ) 间隔框类型,TPS胶为05,铝间隔条为01 private String type; //颜色 用0填充即可 private String color = "0"; //宽度 mm*10 间隔框宽度 private String width; //高度 mm*10 间隔框高度 private String height; //身份标识 private String ident = ""; //条形码 private String frameBcd = ""; }