package com.billion.main.bs.domain;
|
|
import com.billion.common.annotation.Excel;
|
import com.billion.main.common.BaseEntity;
|
import lombok.Data;
|
|
/**
|
* 配方配置子信息对象 bs_formula_child_info
|
*
|
* @author Billion
|
* @date 2024-11-26
|
*/
|
@Data
|
public class BsFormulaChildInfo extends BaseEntity
|
{
|
/** 配方编码 */
|
@Excel(name = "配方编码")
|
private String formulaCode;
|
|
/** 产线 */
|
@Excel(name = "产线编码")
|
private String lineCode;
|
|
/** 工位编号 */
|
@Excel(name = "工位编号")
|
private String locationCode;
|
|
/** 产品编号 */
|
@Excel(name = "产品编号")
|
private String productCode;
|
|
/** 操作内容 */
|
@Excel(name = "操作内容")
|
private String operationContent;
|
|
/** 操作类型 */
|
@Excel(name = "操作类型", readConverterExp = "1=扫描产品条码,2=拧紧数据采集")
|
private String operationType;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer stepSort;
|
|
/** 参数编码 */
|
@Excel(name = "参数编码")
|
private String paramCode;
|
|
/** 图片 */
|
private String picture;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remarks;
|
|
/** 采集数据 */
|
private String collectData;
|
|
/** 结果 */
|
private String results;
|
|
|
|
|
}
|