29 lines
747 B
Java
29 lines
747 B
Java
|
|
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;
|
|||
|
|
}
|