|
@@ -0,0 +1,235 @@
|
|
|
+package org.jeecg.modules.actualControl.billetActual.billetActual.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+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.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 钢坯实绩异常表
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2025-05-23
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("billet_basic_info_exception")
|
|
|
+@Accessors(chain = true)
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@ApiModel(value="billet_basic_info_exception对象", description="钢坯实绩异常表")
|
|
|
+public class BilletBasicInfoException implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
+ private String createBy;
|
|
|
+ /**
|
|
|
+ * 创建日期
|
|
|
+ */
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "创建日期")
|
|
|
+ private Date createTime;
|
|
|
+ /**
|
|
|
+ * 更新人
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "更新人")
|
|
|
+ private String updateBy;
|
|
|
+ /**
|
|
|
+ * 更新日期
|
|
|
+ */
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "更新日期")
|
|
|
+ private Date updateTime;
|
|
|
+ /**
|
|
|
+ * 所属部门
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "所属部门")
|
|
|
+ private String sysOrgCode;
|
|
|
+ /**
|
|
|
+ * 炉号
|
|
|
+ */
|
|
|
+ @Excel(name = "炉号", width = 15)
|
|
|
+ @ApiModelProperty(value = "炉号", required = true)
|
|
|
+ private String heatNo;
|
|
|
+ /**
|
|
|
+ * 铸机号
|
|
|
+ */
|
|
|
+ @Excel(name = "铸机号", width = 15)
|
|
|
+ @ApiModelProperty(value = "铸机号", required = true)
|
|
|
+ private Integer ccmNo;
|
|
|
+ /**班组*/
|
|
|
+ @Excel(name = "班组", width = 15)
|
|
|
+ @ApiModelProperty(value = "班组")
|
|
|
+ @Dict(dicCode = "lg_bz")
|
|
|
+ private String shiftGroup;
|
|
|
+ /**班别*/
|
|
|
+ @Excel(name = "班别", width = 15)
|
|
|
+ @ApiModelProperty(value = "班别")
|
|
|
+ @Dict(dicCode = "lg_bb")
|
|
|
+ private String shift;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 流号
|
|
|
+ */
|
|
|
+ @Excel(name = "流号", width = 15)
|
|
|
+ @ApiModelProperty(value = "流号", required = true)
|
|
|
+ private Integer strandNo;
|
|
|
+ /**
|
|
|
+ * 拉速
|
|
|
+ */
|
|
|
+ @Excel(name = "拉速", width = 15)
|
|
|
+ @ApiModelProperty(value = "拉速", required = true)
|
|
|
+ private Double castingSpeed;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 坯重
|
|
|
+ */
|
|
|
+ @Excel(name = "坯重", width = 15)
|
|
|
+ @ApiModelProperty(value = "坯重", required = true)
|
|
|
+ private Double billetWeight;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 流号
|
|
|
+ */
|
|
|
+ @Excel(name = "钢包号", width = 15)
|
|
|
+ @ApiModelProperty(value = "钢包号", required = true)
|
|
|
+ private Integer ladleNo;
|
|
|
+ /**
|
|
|
+ * 支号
|
|
|
+ */
|
|
|
+ @Excel(name = "炉内顺序号", width = 15)
|
|
|
+ @ApiModelProperty(value = "炉内顺序号", required = true)
|
|
|
+ private Integer heatnoIndex;
|
|
|
+ /**
|
|
|
+ * 钢种
|
|
|
+ */
|
|
|
+ @Excel(name = "钢种", width = 15)
|
|
|
+ @ApiModelProperty(value = "钢种", required = true)
|
|
|
+ private String grade;
|
|
|
+ /**
|
|
|
+ * 定尺
|
|
|
+ */
|
|
|
+ @Excel(name = "定尺", width = 15)
|
|
|
+ @ApiModelProperty(value = "定尺", required = true)
|
|
|
+ private Integer length;
|
|
|
+ /**
|
|
|
+ * 实际长度
|
|
|
+ */
|
|
|
+ @Excel(name = "实际长度", width = 15)
|
|
|
+ @ApiModelProperty(value = "实际长度", required = true)
|
|
|
+ private Integer actualLength;
|
|
|
+ /**
|
|
|
+ * 宽度
|
|
|
+ */
|
|
|
+ @Excel(name = "宽度", width = 15)
|
|
|
+ @ApiModelProperty(value = "宽度", required = true)
|
|
|
+ private Integer width;
|
|
|
+ /**
|
|
|
+ * 厚度
|
|
|
+ */
|
|
|
+ @Excel(name = "厚度", width = 15)
|
|
|
+ @ApiModelProperty(value = "厚度", required = true)
|
|
|
+ private Integer thickness;
|
|
|
+ /**
|
|
|
+ * 规格
|
|
|
+ */
|
|
|
+ @Excel(name = "规格", width = 15)
|
|
|
+ @ApiModelProperty(value = "规格", required = true)
|
|
|
+ private String spec;
|
|
|
+ /**
|
|
|
+ * 定重
|
|
|
+ */
|
|
|
+ @Excel(name = "定重", width = 15)
|
|
|
+ @ApiModelProperty(value = "定重", required = true)
|
|
|
+ private Double weight;
|
|
|
+ /**
|
|
|
+ * 坯号
|
|
|
+ */
|
|
|
+ @Excel(name = "坯号", width = 15)
|
|
|
+ @ApiModelProperty(value = "坯号", required = true)
|
|
|
+ private String billetNo;
|
|
|
+ /**
|
|
|
+ * 顺序号
|
|
|
+ */
|
|
|
+ @Excel(name = "流内顺序号", width = 15)
|
|
|
+ @ApiModelProperty(value = "流内顺序号", required = true)
|
|
|
+ private Integer strandnoIndex;
|
|
|
+ /**
|
|
|
+ * 开始切割时间
|
|
|
+ */
|
|
|
+ @Excel(name = "开始切割时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "开始切割时间", required = true)
|
|
|
+ private Date cutStartTime;
|
|
|
+ /**
|
|
|
+ * 停止切割时间
|
|
|
+ */
|
|
|
+ @Excel(name = "停止切割时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "停止切割时间", required = true)
|
|
|
+ private Date cutStopTime;
|
|
|
+ /**
|
|
|
+ * 判级结果
|
|
|
+ */
|
|
|
+ @Excel(name = "判级结果", width = 15)
|
|
|
+ @ApiModelProperty(value = "判级结果", required = true)
|
|
|
+ private String ratingsResult;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑条件
|
|
|
+ */
|
|
|
+ @Excel(name = "编辑条件", width = 15)
|
|
|
+ @ApiModelProperty(value = "编辑条件", required = true)
|
|
|
+ private Integer optype;
|
|
|
+
|
|
|
+ /**所属表*/
|
|
|
+ @Excel(name = "所属表", width = 15)
|
|
|
+ @ApiModelProperty(value = "所属表",required = true)
|
|
|
+ private String belongTable;
|
|
|
+
|
|
|
+ /**堆垛或车位关联id*/
|
|
|
+ @Excel(name = "堆垛或车位关联id", width = 15)
|
|
|
+ @ApiModelProperty(value = "堆垛或车位关联id",required = true)
|
|
|
+ private String stackOrCarId;
|
|
|
+
|
|
|
+ /**目的地*/
|
|
|
+ @Excel(name = "目的地", width = 15)
|
|
|
+ @ApiModelProperty(value = "目的地",required = true)
|
|
|
+ private String bhtcId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 组坯号
|
|
|
+ */
|
|
|
+ @Excel(name = "组坯号", width = 15)
|
|
|
+ @ApiModelProperty(value = "组坯号", required = true)
|
|
|
+ private String assemblyNumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 牌号
|
|
|
+ */
|
|
|
+ @Excel(name = "牌号", width = 15)
|
|
|
+ @ApiModelProperty(value = "牌号")
|
|
|
+ private String brandNum;
|
|
|
+}
|