Blame view

src/main/java/com/huaheng/pc/task/agvTask/domain/Shelf.java 678 Bytes
tongzhonghao authored
1
2
package com.huaheng.pc.task.agvTask.domain;
3
4
5
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
tongzhonghao authored
6
7
8
9
10
11
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

@Data
@TableName(value = "shelf")
public class Shelf {
12
    @TableId(value = "id", type = IdType.AUTO)
tongzhonghao authored
13
    private Integer id;
14
    @TableField(value = "shelfNo")
tongzhonghao authored
15
    private String shelfNo;
16
    @TableField(value = "containerList")
tongzhonghao authored
17
    private String containerList;
18
    @TableField(value = "status")
tongzhonghao authored
19
    private String status;
20
    @TableField(value = "positionName")
tongzhonghao authored
21
22
    private String positionName;
}