ShipmentContainerAdvice.java
4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.huaheng.pc.shipment.shipmentContainerAdvice.domain;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.TableField;
import org.jeecgframework.poi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* @Description: 出库预配盘
* @Author: jeecg-boot
* @Date: 2023-11-16
* @Version: V1.0
*/
@Data
@TableName("shipment_container_advice")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "shipment_container_advice对象", description = "出库预配盘")
public class ShipmentContainerAdvice implements Serializable {
private static final long serialVersionUID = 1L;
/** 主键 */
@TableId(type = IdType.AUTO)
@ApiModelProperty(value = "主键")
private Integer id;
/** 仓库编码 */
@Excel(name = "仓库编码", width = 15)
@ApiModelProperty(value = "仓库编码")
@TableField(value = "warehouseCode")
private String warehouseCode;
/** 容器编码 */
@Excel(name = "容器编码", width = 15)
@ApiModelProperty(value = "容器编码")
@TableField(value = "containerCode")
private String containerCode;
@ApiModelProperty(value = "库存id")
@TableField(value = "inventoryDetailId")
private Integer inventoryDetailId;
/** 出库配盘ID */
@Excel(name = "出库配盘ID", width = 15)
@ApiModelProperty(value = "出库配盘ID")
@TableField(value = "shipmentContainerId")
private Integer shipmentContainerId;
/** 出库单编码 */
@Excel(name = "出库单编码", width = 15)
@ApiModelProperty(value = "出库单编码")
@TableField(value = "shipmentCode")
private String shipmentCode;
/** 出库单ID */
@Excel(name = "出库单ID", width = 15)
@ApiModelProperty(value = "出库单ID")
@TableField(value = "shipmentId")
private Integer shipmentId;
/** 出库明细id */
@Excel(name = "出库明细id", width = 15)
@ApiModelProperty(value = "出库明细id")
@TableField(value = "shipmentDetailId")
private Integer shipmentDetailId;
/** 货主 */
@Excel(name = "货主", width = 15)
@ApiModelProperty(value = "货主")
@TableField(value = "companyCode")
private String companyCode;
/** 物料编码 */
@Excel(name = "物料编码", width = 15)
@ApiModelProperty(value = "物料编码")
@TableField(value = "materialCode")
private String materialCode;
/** 物料名称 */
@Excel(name = "物料名称", width = 15)
@ApiModelProperty(value = "物料名称")
@TableField(value = "materialName")
private String materialName;
/** 物料规格 */
@Excel(name = "物料规格", width = 15)
@ApiModelProperty(value = "物料规格")
@TableField(value = "materialSpec")
private String materialSpec;
/** 物料单位 */
@Excel(name = "物料单位", width = 15)
@ApiModelProperty(value = "物料单位")
@TableField(value = "materialUnit")
private String materialUnit;
/** 批次 */
@Excel(name = "批次", width = 15)
@ApiModelProperty(value = "批次")
@TableField(value = "batch")
private String batch;
/** 状态 */
@Excel(name = "状态", width = 15)
@ApiModelProperty(value = "状态")
@TableField(value = "status")
private Integer status;
/** 数量 */
@Excel(name = "数量", width = 15)
@ApiModelProperty(value = "数量")
@TableField(value = "qty")
private java.math.BigDecimal qty;
/** 已出数量 */
@Excel(name = "已出数量", width = 15)
@ApiModelProperty(value = "已出数量")
@TableField(value = "taskQty")
private java.math.BigDecimal taskQty;
/** 创建人 */
@ApiModelProperty(value = "创建人")
@TableField(value = "createdBy")
private String createdBy;
/** 创建日期 */
@ApiModelProperty(value = "创建日期")
@TableField(value = "created")
private java.util.Date created;
/** 更新人 */
@ApiModelProperty(value = "更新人")
@TableField(value = "lastUpdatedBy")
private String lastUpdatedBy;
/** 更新日期 */
@ApiModelProperty(value = "更新日期")
@TableField(value = "lastUpdated")
private java.util.Date lastUpdated;
}