|
@@ -0,0 +1,130 @@
|
|
|
|
+package org.jeecg.modules.billet.storageBill.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.jeecgframework.poi.excel.annotation.Excel;
|
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @Description: 装运单打印表
|
|
|
|
+ * @Author: jeecg-boot
|
|
|
|
+ * @Date: 2025-06-16
|
|
|
|
+ * @Version: V1.0
|
|
|
|
+ */
|
|
|
|
+@Data
|
|
|
|
+@TableName("storage_bill_print")
|
|
|
|
+@Accessors(chain = true)
|
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
|
+@ApiModel(value = "storage_bill_print对象", description = "装运单打印表")
|
|
|
|
+public class StorageBillPrint 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 java.util.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 = "目的地")
|
|
|
|
+ private String destination;
|
|
|
|
+ /**
|
|
|
|
+ * 到站时间
|
|
|
|
+ */
|
|
|
|
+ @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 Date arrivalTime;
|
|
|
|
+ /**
|
|
|
|
+ * 车牌号
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "车牌号", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "车牌号")
|
|
|
|
+ private String licensePlate;
|
|
|
|
+ /**
|
|
|
|
+ * 牌号
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "牌号", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "牌号")
|
|
|
|
+ private String brandNum;
|
|
|
|
+ /**
|
|
|
|
+ * 炉号
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "炉号", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "炉号")
|
|
|
|
+ private String heatNo;
|
|
|
|
+ /**
|
|
|
|
+ * 定尺
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "定尺", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "定尺")
|
|
|
|
+ private String size;
|
|
|
|
+ /**
|
|
|
|
+ * 名称
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "名称", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "名称")
|
|
|
|
+ private String name;
|
|
|
|
+ /**
|
|
|
|
+ * 支数
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "支数", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "支数")
|
|
|
|
+ private Integer amountTotal;
|
|
|
|
+ /**
|
|
|
|
+ * 重量
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "重量", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "重量")
|
|
|
|
+ private BigDecimal weight;
|
|
|
|
+ /**
|
|
|
|
+ * 装运单ID
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "装运单ID", width = 15)
|
|
|
|
+ @ApiModelProperty(value = "装运单ID")
|
|
|
|
+ private String storageBillId;
|
|
|
|
+}
|