自动化立体仓库 - WMS系统
*
lsh
1 天以前 b6891f956cd63d4a334e28540b0feab66cd230a7
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
package com.zy.asrs.entity;
 
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.annotations.TableField;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
@Data
@TableName("asr_bas_arm_rules")
public class BasArmRules implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 长度.单位:mm
     */
    @ApiModelProperty(value= "长度.单位:mm")
    @TableField("material_length")
    private Double materialLength;
 
    /**
     * 宽度.单位:mm
     */
    @ApiModelProperty(value= "宽度.单位:mm")
    @TableField("material_width")
    private Double materialWidth;
 
    /**
     * 高度.单位:mm
     */
    @ApiModelProperty(value= "高度.单位:mm")
    @TableField("material_height")
    private Double materialHeight;
 
    /**
     * 重量.单位:kg
     */
    @ApiModelProperty(value= "重量.单位:kg")
    @TableField("material_weight")
    private Double materialWeight;
 
    /**
     * 体积(立方毫米)
     */
    @ApiModelProperty(value= "体积(立方毫米)")
    @TableField("material_volume")
    private Double materialVolume;
 
    /**
     * 满托数量
     */
    @ApiModelProperty(value= "满托数量")
    @TableField("material_number")
    private Integer materialNumber;
 
    /**
     * 是否需要更新
     */
    @ApiModelProperty(value= "是否需要更新")//0:需要更新  1:正常  2:异常
    private Integer status;
 
    public BasArmRules() {}
 
    public BasArmRules(Double materialLength,Double materialWidth,Double materialHeight,Double materialWeight,Double materialVolume,Integer materialNumber,Integer status) {
        this.materialLength = materialLength;
        this.materialWidth = materialWidth;
        this.materialHeight = materialHeight;
        this.materialWeight = materialWeight;
        this.materialVolume = materialVolume;
        this.materialNumber = materialNumber;
        this.status = status;
    }
 
//    BasArmRules basArmRules = new BasArmRules(
//            null,    // 长度.单位:mm[非空]
//            null,    // 宽度.单位:mm[非空]
//            null,    // 高度.单位:mm[非空]
//            null,    // 重量.单位:kg[非空]
//            null,    // 体积(立方毫米)[非空]
//            null,    // 满托数量[非空]
//            null    // 是否需要更新[非空]
//    );
 
 
}