自动化立体仓库 - WCS系统
*
lsh
2024-10-18 2f80aaf62144f6ea315334335ad46fbe0ab911e8
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
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_circular_shuttle")
public class BasCircularShuttle implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value= "")
    @TableField("rgv_id")
    private Integer rgvId;
 
    @ApiModelProperty(value= "")
    @TableField("rgv_no")
    private Integer rgvNo;
 
    /**
     * 0:正常,1:禁用
     */
    @ApiModelProperty(value= "0:正常,1:禁用")
    private Integer status;
 
    public BasCircularShuttle() {}
 
    public BasCircularShuttle(Integer rgvId,Integer rgvNo,Integer status) {
        this.rgvId = rgvId;
        this.rgvNo = rgvNo;
        this.status = status;
    }
 
//    BasCircularShuttle basCircularShuttle = new BasCircularShuttle(
//            null,    // [非空]
//            null,    // [非空]
//            null    // 0:正常,1:禁用[非空]
//    );
 
 
}