TurnoverBox.java
1.52 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
package com.huaheng.api.mes.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
* mes入库周转箱数据表 turnover_box
*
* @author xcq
* @date 2022-11-04
*/
@TableName(value = "turnover_box")
@Data
public class TurnoverBox implements Serializable{
private static final long serialVersionUID = 1L;
/** - */
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 库存头表id */
@TableField(value = "inventoryId")
private Integer inventoryId;
/** 周转箱批次 */
@TableField(value = "boxBatch")
private String boxBatch;
/** 箱码 */
@TableField(value = "boxCode")
private String boxCode;
/** 数量 */
@TableField(value = "qty")
private BigDecimal qty;
/** 生产日期 */
@TableField(value = "manufactureDate")
private Date manufactureDate;
/** 物料编码 */
@TableField(value = "materialCode")
private String materialCode;
/** 容器 */
@TableField(value = "containerCode")
private String containerCode;
@TableField(value = "created", fill = FieldFill.INSERT)
@ApiModelProperty(value = "创建时间")
private Date created;
}