package org.jeecg.modules.eam.entity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableLogic; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonIgnore; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import org.jeecg.common.aspect.annotation.Dict; import org.jeecg.common.constant.CommonConstant; import org.jeecg.common.system.base.entity.JeecgEntity; import org.jeecgframework.poi.excel.annotation.Excel; import java.io.Serializable; /** * @Description: 工艺参数 * @Author: houjie * @Date: 2023-03-07 * @Version: V1.0 */ @Data @TableName("mom_eam_process_parameters") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_process_parameters对象", description="工艺参数") public class ProcessParameters extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**工艺参数编码*/ @Excel(name = "工艺参数编码", width = 15) @ApiModelProperty(value = "工艺参数编码") private String num; /**工艺参数名称*/ @Excel(name = "工艺参数名称", width = 15) @ApiModelProperty(value = "工艺参数名称") private String name; /**计量单位*/ @Excel(name = "计量单位", width = 15) @ApiModelProperty(value = "计量单位") @Dict(dictTable = "mom_base_unit", dicCode = "id", dicText = "name") private String unitId; /**租户id*/ @Excel(name = "租户id", width = 15) @ApiModelProperty(value = "租户id") private String tenantId; /** * 删除状态(0-正常,1-已删除) */ @Excel(name = "删除状态(0-正常,1-已删除)", width = 15) @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") private Integer delFlag = CommonConstant.DEL_FLAG_0; /**备注*/ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private String remark; /**备用字段1*/ @Excel(name = "备用字段1", width = 15) @ApiModelProperty(value = "备用字段1") private String processParametersUda1; /**备用字段2*/ @Excel(name = "备用字段2", width = 15) @ApiModelProperty(value = "备用字段2") private String processParametersUda2; /**备用字段3*/ @Excel(name = "备用字段3", width = 15) @ApiModelProperty(value = "备用字段3") private String processParametersUda3; /**备用字段4*/ @Excel(name = "备用字段4", width = 15) @ApiModelProperty(value = "备用字段4") private String processParametersUda4; /**备用字段4*/ @Excel(name = "备用字段4", width = 15) @ApiModelProperty(value = "备用字段4") private String processParametersUda5; /**状态 0 禁用 1 启用*/ @Excel(name = "状态 0 禁用 1 启用", width = 15) @ApiModelProperty(value = "状态 0 禁用 1 启用") private String status = CommonConstant.STATUS_1; @ApiModelProperty(value = "精度参数分类id") private String processParametersCategoryId; @ApiModelProperty(value = "精度参数分类编码/名称") @TableField(exist = false) private String processParametersCategoryNumName; @ApiModelProperty(value = "计量单位名称") @TableField(exist = false) private String unit; //设备台账绑定工艺参数,用于收参 @TableField(exist = false) private String processParametersId; }