package com.ruoyi.mill.domain; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; import lombok.Data; import java.math.BigDecimal; /** 工艺方案道次详情 */ @Data public class MillProcessPass extends BaseEntity { private Long passId; private Long recipeId; @Excel(name = "道次") private Integer passNo; @Excel(name = "入口厚度(mm)") private BigDecimal inThick; @Excel(name = "出口厚度(mm)") private BigDecimal outThick; @Excel(name = "宽度(mm)") private BigDecimal width; @Excel(name = "轧制力(kN)") private BigDecimal rollForce; @Excel(name = "入口张力(kN)") private BigDecimal inTension; @Excel(name = "出口张力(kN)") private BigDecimal outTension; @Excel(name = "最高速度(m/min)") private BigDecimal maxSpeed; @Excel(name = "入口单位张力(N/mm²)") private BigDecimal inUnitTension; @Excel(name = "出口单位张力(N/mm²)") private BigDecimal outUnitTension; @Excel(name = "压下量(mm)") private BigDecimal reduction; @Excel(name = "总压下量(mm)") private BigDecimal totalReduction; private String delFlag; }