79 lines
3.1 KiB
Java
79 lines
3.1 KiB
Java
|
|
package com.ruoyi.mill.domain;
|
||
|
|
|
||
|
|
import com.ruoyi.common.annotation.Excel;
|
||
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
import java.math.BigDecimal;
|
||
|
|
|
||
|
|
/** 工艺方案道次详情 */
|
||
|
|
public class MillProcessPass extends BaseEntity {
|
||
|
|
|
||
|
|
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;
|
||
|
|
|
||
|
|
public Long getRecipeId() { return recipeId; }
|
||
|
|
public void setRecipeId(Long v) { this.recipeId = v; }
|
||
|
|
public Integer getPassNo() { return passNo; }
|
||
|
|
public void setPassNo(Integer v) { this.passNo = v; }
|
||
|
|
public BigDecimal getInThick() { return inThick; }
|
||
|
|
public void setInThick(BigDecimal v) { this.inThick = v; }
|
||
|
|
public BigDecimal getOutThick() { return outThick; }
|
||
|
|
public void setOutThick(BigDecimal v) { this.outThick = v; }
|
||
|
|
public BigDecimal getWidth() { return width; }
|
||
|
|
public void setWidth(BigDecimal v) { this.width = v; }
|
||
|
|
public BigDecimal getRollForce() { return rollForce; }
|
||
|
|
public void setRollForce(BigDecimal v) { this.rollForce = v; }
|
||
|
|
public BigDecimal getInTension() { return inTension; }
|
||
|
|
public void setInTension(BigDecimal v) { this.inTension = v; }
|
||
|
|
public BigDecimal getOutTension() { return outTension; }
|
||
|
|
public void setOutTension(BigDecimal v) { this.outTension = v; }
|
||
|
|
public BigDecimal getMaxSpeed() { return maxSpeed; }
|
||
|
|
public void setMaxSpeed(BigDecimal v) { this.maxSpeed = v; }
|
||
|
|
public BigDecimal getInUnitTension() { return inUnitTension; }
|
||
|
|
public void setInUnitTension(BigDecimal v) { this.inUnitTension = v; }
|
||
|
|
public BigDecimal getOutUnitTension() { return outUnitTension; }
|
||
|
|
public void setOutUnitTension(BigDecimal v){ this.outUnitTension = v; }
|
||
|
|
public BigDecimal getReduction() { return reduction; }
|
||
|
|
public void setReduction(BigDecimal v) { this.reduction = v; }
|
||
|
|
public BigDecimal getTotalReduction() { return totalReduction; }
|
||
|
|
public void setTotalReduction(BigDecimal v){ this.totalReduction = v; }
|
||
|
|
public String getDelFlag() { return delFlag; }
|
||
|
|
public void setDelFlag(String v) { this.delFlag = v; }
|
||
|
|
}
|