自动化立体仓库 - WMS系统
#
lsh
2024-10-11 f42ab50e23d905a963218ee05fdf40b7028dfbd0
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import com.core.common.Cools;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_box_type")
public class BasBoxType implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * ID
     */
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 任务号
     */
    @ApiModelProperty(value= "箱型")
    @TableField("box_specs")
    private String boxSpecs;
 
    /**
     * 堆垛机
     */
    @ApiModelProperty(value= "箱型编号")
    @TableField("box_type")
    private String boxType;
 
    public BasBoxType() {}
 
    public BasBoxType(String boxSpecs,String boxType) {
        this.boxSpecs = boxSpecs;
        this.boxType = boxType;
    }
 
//    BasBoxType basBoxType = new BasBoxType(
//            null,    // 任务号[非空]
//            null    // 堆垛机
//    );
 
 
}