package cn.stylefeng.guns.modular.rm.recipeManage.model.result;
|
|
import lombok.Data;
|
import java.util.Date;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* <p>
|
* 配方管理
|
* </p>
|
*
|
* @author ruimin
|
* @since 2023-08-04
|
*/
|
@Data
|
public class RecipeManageResult implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* id
|
*/
|
private Long id;
|
|
/**
|
* 产线
|
*/
|
private String productionLine;
|
|
private String stepSortFlag;
|
|
/**
|
* 工位
|
*/
|
private String locationCode;
|
|
/**
|
* 产品编号
|
*/
|
private String productCode;
|
|
/**
|
* 操作内容
|
*/
|
private String operationSteps;
|
|
/**
|
* 技术要求
|
*/
|
private String techRequirement;
|
|
/**
|
* 类型(扫描产品条码1、扫描物料条码2、拧紧类3)
|
*/
|
private String operationType;
|
|
/**
|
* 排序
|
*/
|
private String stepSort;
|
|
/**
|
* 参数编码
|
*/
|
private String paramCode;
|
|
/**
|
* 物料编码
|
*/
|
private String materialCode;
|
|
/**
|
* 图片
|
*/
|
private String picture;
|
|
/**
|
* 备注
|
*/
|
private String remarks;
|
|
/**
|
* 预留字段1
|
*/
|
private String spareField1;
|
|
/**
|
* 预留字段2
|
*/
|
private String spareField2;
|
|
/**
|
* 预留字段3
|
*/
|
private String spareField3;
|
|
/**
|
* 预留字段4
|
*/
|
private String spareField4;
|
|
}
|