1完成酸轧轧辊调整
2完成双机架工艺规格串联 3完成双机架计划串联 4完成双机架wip快捷录入检索 5完成双机架实绩串联
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.klp.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/** 双机架工艺方案版本(double-rack.mill_process_recipe_version) */
|
||||
@Data
|
||||
public class DrMillProcessRecipeVersion {
|
||||
|
||||
private Long versionId;
|
||||
private Long recipeId;
|
||||
/** 版本号,如 V1.0 */
|
||||
private String versionCode;
|
||||
/** 1=已激活 0=未激活 */
|
||||
private Integer isActive;
|
||||
/** 0=草稿 1=已发布 */
|
||||
private String status;
|
||||
private String createBy;
|
||||
private Date createTime;
|
||||
private String updateBy;
|
||||
private Date updateTime;
|
||||
private String remark;
|
||||
private String delFlag;
|
||||
|
||||
/** 关联道次(非数据库字段) */
|
||||
private List<DrMillProcessPass> passList;
|
||||
}
|
||||
Reference in New Issue
Block a user