57 lines
2.2 KiB
Java
57 lines
2.2 KiB
Java
|
|
package com.ruoyi.mill.domain;
|
||
|
|
|
||
|
|
import com.ruoyi.common.annotation.Excel;
|
||
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
import java.math.BigDecimal;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/** 工艺方案主表 */
|
||
|
|
public class MillProcessRecipe extends BaseEntity {
|
||
|
|
|
||
|
|
@Excel(name = "方案记录号")
|
||
|
|
private String recipeNo;
|
||
|
|
|
||
|
|
@Excel(name = "合金号")
|
||
|
|
private String alloyNo;
|
||
|
|
|
||
|
|
@Excel(name = "道次数量")
|
||
|
|
private Integer passCount;
|
||
|
|
|
||
|
|
@Excel(name = "原料厚度(mm)")
|
||
|
|
private BigDecimal inThick;
|
||
|
|
|
||
|
|
@Excel(name = "成品厚度(mm)")
|
||
|
|
private BigDecimal outThick;
|
||
|
|
|
||
|
|
@Excel(name = "成品宽度(mm)")
|
||
|
|
private BigDecimal outWidth;
|
||
|
|
|
||
|
|
/** 0-正常 1-停用 */
|
||
|
|
private String status;
|
||
|
|
|
||
|
|
/** 删除标志 0-存在 2-删除 */
|
||
|
|
private String delFlag;
|
||
|
|
|
||
|
|
/** 关联道次列表(非数据库字段) */
|
||
|
|
private List<MillProcessPass> passList;
|
||
|
|
|
||
|
|
public String getRecipeNo() { return recipeNo; }
|
||
|
|
public void setRecipeNo(String v) { this.recipeNo = v; }
|
||
|
|
public String getAlloyNo() { return alloyNo; }
|
||
|
|
public void setAlloyNo(String v) { this.alloyNo = v; }
|
||
|
|
public Integer getPassCount() { return passCount; }
|
||
|
|
public void setPassCount(Integer v) { this.passCount = 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 getOutWidth() { return outWidth; }
|
||
|
|
public void setOutWidth(BigDecimal v) { this.outWidth = v; }
|
||
|
|
public String getStatus() { return status; }
|
||
|
|
public void setStatus(String v) { this.status = v; }
|
||
|
|
public String getDelFlag() { return delFlag; }
|
||
|
|
public void setDelFlag(String v) { this.delFlag = v; }
|
||
|
|
public List<MillProcessPass> getPassList() { return passList; }
|
||
|
|
public void setPassList(List<MillProcessPass> v) { this.passList = v; }
|
||
|
|
}
|