自动化立体仓库 - WMS系统
*
lsh
13 小时以前 b36dbce34e28fadfe7080f28f0612b8239ca6cb5
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
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")
public class BasArm implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @ApiModelProperty(value= "ID")
    private Long id;
 
    /**
     * 机械臂编号
     */
    @ApiModelProperty(value= "机械臂编号")
    @TableId(value = "arm_no", type = IdType.INPUT)
    @TableField("arm_no")
    private Integer armNo;
 
    /**
     * 码垛位
     */
    @ApiModelProperty(value= "码垛位")
    @TableId(value = "sta_no", type = IdType.INPUT)
    @TableField("sta_no")
    private Integer staNo;
 
    /**
     * 拆垛位
     */
    @ApiModelProperty(value= "拆垛位")
    @TableId(value = "sorting_line", type = IdType.INPUT)
    @TableField("sorting_line")
    private Integer sortingLine;
 
    @ApiModelProperty(value= "")
    private Integer status;
 
    public BasArm() {}
 
    public BasArm(Integer armNo,Integer staNo,Integer sortingLine,Integer status) {
        this.armNo = armNo;
        this.staNo = staNo;
        this.sortingLine = sortingLine;
        this.status = status;
    }
 
//    BasArm basArm = new BasArm(
//            null,    // 机械臂编号[非空]
//            null,    // 码垛位[非空]
//            null,    // 拆垛位[非空]
//            null    // [非空]
//    );
 
 
}