自动化立体仓库 - WMS系统
zyh
14 小时以前 701542ac0a90cf0e3a0a81ec2bb8066b5de68e75
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
package com.zy.asrs.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.Data;
 
import java.util.Date;
 
@Data
@TableName("can_fin")
public class CanFin {
 
    /**
     * 主键编号
     */
    @ApiModelProperty(value= "主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 入库单号
    */
    @TableField("in_no")
    private String inNo;
 
    /**
     * 出库号
     * */
    @TableField("out_no")
    private String outNo;
 
    /**
     * 插入时间
     */
    @TableField("apply_time")
    private Date applyTime;
 
    /**
     * 任务类型
     */
    @TableField("task_type")
    private String taskType;
 
    /**
     * 任务状态
     */
    @TableField("task_status")
    private String taskStatus;
 
    /**
     * 出库类型
     */
    @TableField("out_type")
    private String outType;
 
    /**
     * agv类型
     */
    @TableField("agv_type")
    private String agvType;
}