package com.mes.pp.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; /** *

* *

* * @author zhoush * @since 2024-04-16 */ @Data @EqualsAndHashCode(callSuper = false) public class OptimizeHeatDetail implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 工程号 */ private String projectNo; /** * 流程卡号 */ private String processId; /** * 补片状态:补片1,0非补片;2024.0409新增 */ private Integer patchState; /** * 层 */ private Integer layer; /** * 订单内排序 */ private Integer orderSort; /** * 版图编号 */ private Integer layoutId; /** * 版图内排序 */ private Integer sort; /** * 小片编号 */ private Integer glassId; /** * 小片宽 */ private double width; /** * 小片高 */ private double height; /** * 配片宽 */ private double pairWidth; /** * 配片高 */ private double pairHeight; /** * x坐标 */ private double xAxis; /** * y坐标 */ private double yAxis; /** * 旋转角度(逆时针) */ private double rotateAngle; /** * 创建人 */ private String creater; /** * 创建时间 */ private Data createTime; /** * 修改时间 */ private Data updateTime; @TableField("intRemark") private Integer intRemark; @TableField("strRemark") private String strRemark; }