|
@@ -0,0 +1,178 @@
|
|
|
+package org.jeecg.modules.billet.sampleCardDeliveryRecord.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+import java.util.Date;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
+import lombok.Data;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 送样卡记录
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2025-07-14
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("sample_card_delivery_record")
|
|
|
+@Accessors(chain = true)
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@ApiModel(value="sample_card_delivery_record对象", description="送样卡记录")
|
|
|
+public class SampleCardDeliveryRecord implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**ID*/
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "ID")
|
|
|
+ private java.lang.String id;
|
|
|
+ /**创建人*/
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
+ private java.lang.String createBy;
|
|
|
+ /**创建时间*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ private java.util.Date createTime;
|
|
|
+ /**更新人*/
|
|
|
+ @ApiModelProperty(value = "更新人")
|
|
|
+ private java.lang.String updateBy;
|
|
|
+ /**更新时间*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "更新时间")
|
|
|
+ private java.util.Date updateTime;
|
|
|
+ /**所属部门*/
|
|
|
+ @ApiModelProperty(value = "所属部门")
|
|
|
+ private java.lang.String sysOrgCode;
|
|
|
+ /**铸机号*/
|
|
|
+ @Excel(name = "铸机号", width = 15)
|
|
|
+ @ApiModelProperty(value = "铸机号")
|
|
|
+ private java.lang.String ccmNo;
|
|
|
+ /**炉号*/
|
|
|
+ @Excel(name = "炉号", width = 15)
|
|
|
+ @ApiModelProperty(value = "炉号")
|
|
|
+ private java.lang.String heatNo;
|
|
|
+ /**班别*/
|
|
|
+ @Excel(name = "班别", width = 15)
|
|
|
+ @ApiModelProperty(value = "班别")
|
|
|
+ private java.lang.String shift;
|
|
|
+ /**班组*/
|
|
|
+ @Excel(name = "班组", width = 15)
|
|
|
+ @ApiModelProperty(value = "班组")
|
|
|
+ private java.lang.String shiftGroup;
|
|
|
+ /**牌号*/
|
|
|
+ @Excel(name = "牌号", width = 15)
|
|
|
+ @ApiModelProperty(value = "牌号")
|
|
|
+ private java.lang.String grade;
|
|
|
+ /**定尺*/
|
|
|
+ @Excel(name = "定尺", width = 15)
|
|
|
+ @ApiModelProperty(value = "定尺")
|
|
|
+ private java.lang.Integer length;
|
|
|
+ /**合计*/
|
|
|
+ @Excel(name = "合计", width = 15)
|
|
|
+ @ApiModelProperty(value = "合计")
|
|
|
+ private java.lang.Integer amount;
|
|
|
+ /**棒一定尺明细*/
|
|
|
+ @Excel(name = "棒一定尺明细", width = 15)
|
|
|
+ @ApiModelProperty(value = "棒一定尺明细")
|
|
|
+ private java.lang.String rollClubOneDetails;
|
|
|
+ /**棒二定尺明细*/
|
|
|
+ @Excel(name = "棒二定尺明细", width = 15)
|
|
|
+ @ApiModelProperty(value = "棒二定尺明细")
|
|
|
+ private java.lang.String rollClubTwoDetails;
|
|
|
+ /**棒三定尺明细*/
|
|
|
+ @Excel(name = "棒三定尺明细", width = 15)
|
|
|
+ @ApiModelProperty(value = "棒三定尺明细")
|
|
|
+ private java.lang.String rollClubThreeDetails;
|
|
|
+ /**定尺明细*/
|
|
|
+ @Excel(name = "定尺明细", width = 15)
|
|
|
+ @ApiModelProperty(value = "定尺明细")
|
|
|
+ private java.lang.String lengthDetails;
|
|
|
+ /**1流支数*/
|
|
|
+ @Excel(name = "1流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "1流支数")
|
|
|
+ private java.lang.Integer oneStrandSum;
|
|
|
+ /**2流支数*/
|
|
|
+ @Excel(name = "2流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "2流支数")
|
|
|
+ private java.lang.Integer twoStrandSum;
|
|
|
+ /**3流支数*/
|
|
|
+ @Excel(name = "3流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "3流支数")
|
|
|
+ private java.lang.Integer threeStrandSum;
|
|
|
+ /**4流支数*/
|
|
|
+ @Excel(name = "4流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "4流支数")
|
|
|
+ private java.lang.Integer fourStrandSum;
|
|
|
+ /**5流支数*/
|
|
|
+ @Excel(name = "5流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "5流支数")
|
|
|
+ private java.lang.Integer fiveStrandSum;
|
|
|
+ /**6流支数*/
|
|
|
+ @Excel(name = "6流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "6流支数")
|
|
|
+ private java.lang.Integer sixStrandSum;
|
|
|
+ /**7流支数*/
|
|
|
+ @Excel(name = "7流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "7流支数")
|
|
|
+ private java.lang.Integer sevenStrandSum;
|
|
|
+ /**8流支数*/
|
|
|
+ @Excel(name = "8流支数", width = 15)
|
|
|
+ @ApiModelProperty(value = "8流支数")
|
|
|
+ private java.lang.Integer eightStrandSum;
|
|
|
+ /**热送定尺*/
|
|
|
+ @Excel(name = "热送定尺", width = 15)
|
|
|
+ @ApiModelProperty(value = "热送定尺")
|
|
|
+ private java.lang.String hotChargeLength;
|
|
|
+ /**堆垛定尺*/
|
|
|
+ @Excel(name = "堆垛定尺", width = 15)
|
|
|
+ @ApiModelProperty(value = "堆垛定尺")
|
|
|
+ private java.lang.String stackLength;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private java.lang.String remark;
|
|
|
+ /**确认人*/
|
|
|
+ @Excel(name = "确认人", width = 15)
|
|
|
+ @ApiModelProperty(value = "确认人")
|
|
|
+ private java.lang.String confirmBy;
|
|
|
+ /**确认日期*/
|
|
|
+ @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 = "确认日期")
|
|
|
+ private java.util.Date confirmTime;
|
|
|
+ /**是否编辑热装(1:未编辑,2:已编辑)*/
|
|
|
+ @Excel(name = "是否编辑热装(1:未编辑,2:已编辑)", width = 15)
|
|
|
+ @ApiModelProperty(value = "是否编辑热装(1:未编辑,2:已编辑)")
|
|
|
+ private java.lang.String isEditCharge;
|
|
|
+ /**起垛信息*/
|
|
|
+ @Excel(name = "起垛信息", width = 15)
|
|
|
+ @ApiModelProperty(value = "起垛信息")
|
|
|
+ private java.lang.String stackInfo;
|
|
|
+ /**质检牌号*/
|
|
|
+ @Excel(name = "质检牌号", width = 15)
|
|
|
+ @ApiModelProperty(value = "质检牌号")
|
|
|
+ private java.lang.String brandNum;
|
|
|
+ /**送样时间*/
|
|
|
+ @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 = "送样时间")
|
|
|
+ private java.util.Date deliveryTime;
|
|
|
+ /**质检备注*/
|
|
|
+ @Excel(name = "质检备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "质检备注")
|
|
|
+ private java.lang.String notes;
|
|
|
+}
|