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; }