package com.iailab.module.ansteel.coking.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.util.Date; /** * 焦化工序影响因数偏差值 * * @author lirm ${email} * @since 1.0.0 2025-04-16 */ @Data @TableName("t_coking_trace_deviation") public class CokingTraceDeviationEntity { @TableId(type = IdType.ASSIGN_UUID) private String id; /** * 关联ID */ private String relId; /** * 工序名称 */ private String process; /** * 建议对象 */ private String sugObj; /** * 查询时间 */ private String clock; /** * 一级指标-偏差值-名称 */ private String ind1Name; /** * 一级指标-偏差值-值 */ private String ind1Value; /** * 一级指标-偏差值-单位 */ private String ind1Unit; /** * 二级指标-偏差值-名称 */ private String ind2Name; /** * 二级指标-偏差值-值 */ private String ind2Value; /** * 二级指标-偏差值-单位 */ private String ind2Unit; /** * 影响因素1-偏差值-名称 */ private String fac1Name; /** * 影响因素1-偏差值-值 */ private String fac1Value; /** * 影响因素1-偏差值-单位 */ private String fac1Unit; /** * 影响因素2-偏差值-名称 */ private String fac2Name; /** * 影响因素2-偏差值-值 */ private String fac2Value; /** * 影响因素2-偏差值-单位 */ private String fac2Unit; /** * 影响因素3-偏差值-名称 */ private String fac3Name; /** * 影响因素3-偏差值-值 */ private String fac3Value; /** * 影响因素3-偏差值-单位 */ private String fac3Unit; /** * 影响因素4-偏差值-名称 */ private String fac4Name; /** * 影响因素4-偏差值-值 */ private String fac4Value; /** * 影响因素4-偏差值-单位 */ private String fac4Unit; /** * 影响因素5-偏差值-名称 */ private String fac5Name; /** * 影响因素5-偏差值-值 */ private String fac5Value; /** * 影响因素5-偏差值-单位 */ private String fac5Unit; /** * 创建时间 */ private Date createDate; }