自动化立体仓库 - WMS系统
dubin
2 天以前 be554d9e52799a0ee14c98b0959d07ab3847c8e6
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@TableName("cust_half_barcode")
public class HalfBarcode {
    private static final long serialVersionUID = 1L;
    @TableField("zpallet")
    @ApiModelProperty(value= "托盘条码")
    private String zpallet;
 
    @ApiModelProperty(value= "绑定数量")
    @TableField("anfme")
    private int anfme;
 
    @ApiModelProperty(value= "可放数量")
    @TableField("price")
    private int price;
 
    @ApiModelProperty(value= "托盘规格")
    @TableField("specs")
    private String specs;
}