| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("仓库id") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer storeManagementId; |
| | | |
| | | @ApiModelProperty("仓库名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String storeManagementName; |
| | | |
| | | @ApiModelProperty("货架名称") |
| | | @TableField("goods_shelf_name") |
| | | private String goodsShelfName; |
| | | |
| | | @ApiModelProperty("仓库层数 1代表一层,2代表两层,3代表三层") |