package com.ruoyi.technology.pojo;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
@Data
|
@TableName("technology_routing_operation_param")
|
@Schema(name = "TechnologyRoutingOperationParam对象", description = "工艺路线工序参数表")
|
public class TechnologyRoutingOperationParam implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "id")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@Schema(description = "参数编码(唯一标识)")
|
private String paramCode;
|
|
@Schema(description = "参数名称")
|
private String paramName;
|
|
@Schema(description = "参数类型(1数字 2文本 3下拉选择 4时间)")
|
private Byte paramType;
|
|
@Schema(description = "参数格式")
|
private String paramFormat;
|
|
@Schema(description = "单位")
|
private String unit;
|
|
@Schema(description = "是否必填")
|
private Byte isRequired;
|
|
@Schema(description = "备注")
|
private String remark;
|
|
@Schema(description = "创建人")
|
@TableField(fill = FieldFill.INSERT)
|
private String createUser;
|
|
@Schema(description = "创建时间")
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
@Schema(description = "修改人")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private String updateUser;
|
|
@Schema(description = "修改时间")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
@Schema(description = "部门ID")
|
@TableField(fill = FieldFill.INSERT)
|
private Long deptId;
|
|
@Schema(description = "基础参数ID")
|
private Long paramId;
|
|
@Schema(description = "工序id")
|
private Long technologyOperationId;
|
|
@Schema(description = "工序参数ID")
|
private Long technologyOperationParamId;
|
|
@Schema(description = "工艺路线工序ID")
|
private Long technologyRoutingOperationId;
|
|
@Schema(description = "标准值")
|
private String standardValue;
|
}
|