自动化立体仓库 - WMS系统
1
zc
2024-09-21 f97266870e6ad8f964f10937e5588b5b5fa222eb
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
package com.zy.third.erp.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@NoArgsConstructor
@AllArgsConstructor
@TableName("erp_OutHedTB")
public class OutHedTB implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "AutoId", type = IdType.AUTO)
    private Integer AutoId;
 
    @ApiModelProperty(value = "")
    @TableId(value = "BillNo", type = IdType.INPUT)
    @TableField("BillNo")
    private String BillNo;
 
 
    @TableField("BillDate")
//    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date BillDate;
 
    /**
     * SendMatOut:发料出库
     * OtherOut:其它出库单
     * ItemMoveOut:调拨出库
     * ItemSwitchOut:形态转换出库
     * CheckLossOut:盘盈出库单
     */
    @ApiModelProperty(value = "SendMatOut:发料出库 ")
    @TableField("IoKindID")
    private String IoKindID;
 
    @TableField("IoKindName")
    private String ioKindName;
 
    /**
     * 部门ID
     */
    @ApiModelProperty(value = "部门ID")
    @TableField("ObjectId")
    private String ObjectId;
 
    /**
     * 部门名称
     */
    @ApiModelProperty(value = "部门名称")
    @TableField("ObjectName")
    private String ObjectName;
 
    @ApiModelProperty(value = "")
    @TableField("Remark")
    private String remark;
 
    @TableField("WareId")
    private String wareId;
 
    @TableField("WareName")
    private String wareName;
 
    @ApiModelProperty(value = "")
    @TableField("Temp1")
    private String Temp1;
 
    @ApiModelProperty(value = "")
    @TableField("Temp2")
    private String Temp2;
 
    @ApiModelProperty(value = "")
    @TableField("Temp3")
    private String Temp3;
 
 
    @ApiModelProperty(value = "")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("MakeDate")
    private Date MakeDate;
 
    @ApiModelProperty(value = "")
    @TableField("LKName")
    private String LKName;
 
    @TableField("FactArea")
    private String FactArea;
 
}