package com.huaheng.pc.config.points.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.huaheng.framework.web.domain.BaseEntity; import io.swagger.annotations.ApiModel; import lombok.Data; /** * @author ricard * @time 2019/12/26 * 货架实体 */ @ApiModel(value="com.huaheng.pc.config.points.domain.Points") @TableName(value = "points") @Data public class Points { //id @TableId(value = "id", type = IdType.AUTO ) private Integer id; //仓库编码 @TableField(value = "warehouseCode") private String warehouseCode; //仓库编码 @TableField(value = "uWarehouseCode") private String uWarehouseCode; @TableField(exist = false) private String UWarehouseName; //货架号 @TableField(value = "goodsShelfNo") private String goodsShelfNo; @TableField(exist = false) private Integer companyId; //货主 @TableField(value = "companyCode") private String companyCode; //货主名称 @TableField(exist = false) private String companyName; //货架调动次数 @TableField(value = "num") private Integer num; //是否为空 @TableField(value = "isEmpty") private Integer isEmpty; //是否可用 @TableField(value = "isEnable") private Integer isEnable; //货架状态 @TableField(value = "isLocked") private Integer isLocked; //回库后X轴位置 @TableField(value = "intX") private String intX; //回库后Y轴位置 @TableField(value = "intY") private String intY; //出库前x位置 @TableField(value = "oIntX") private String oIntX; //出库前Y位置 @TableField(value = "oIntY") private String oIntY; //站台号 @TableField(value = "station") private String station; //常规属性 @TableField(value = "common") private Integer common; }