package com.mes.glassinfo.entity; import lombok.Getter; import lombok.Setter; /** * @author SNG-010 */ @Setter @Getter public class OptimizeGlassinfo { // Getter methods // Setter methods /** * 流程卡号 */ private String processId; /** * 工程种类 */ private String type; /** * 宽 */ private Double width; /** * 高 */ private Double height; /** * 宽 */ private Double oHeight; /** * 高 */ private Double oWidth; /** * 厚度 */ private Double glassThickness; /** * 玻璃膜系 */ private String glassType; /** * 层数 */ private int layer; /** * 总层数 */ private int totalLayer; /** * 小片宽(加磨量) */ private Double pWidth; /** * 小片高(加磨量) */ private Double pHeight; /** * 版图id */ private Integer stockId; /** * 钢化版图编号(架号) */ private Integer heatLayoutId; /** * 钢化序号 */ private Integer heatLayoutSort; /** * x坐标 */ private Integer xAxis; /** * y坐标 */ private Integer yAxis; /** * 工程号 */ private String projectNo; /** * 小片编号 */ private String glassId; /** * 订单序号 */ private String orderSort; /** * 旋转角度 */ private Double rotateAngle; }