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; /** * @author ricard * @time 2019/12/26 * 货架实体 */ @ApiModel(value="com.huaheng.pc.config.points.domain.Points") @TableName(value = "points") public class Points extends BaseEntity { //id @TableId(value = "id", type = IdType.AUTO ) private Integer id; //仓库编码 @TableField(value = "warehouseCode") private String warehouseCode; //货架号 @TableField(value = "goodsShelfNo") private String goodsShelfNo; private Integer companyId; //货主 @TableField(value = "companyCode") private String companyCode; //货主名称 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; public Integer getCompanyId() { return companyId; } public void setCompanyId(Integer companyId) { this.companyId = companyId; } public String getCompanyCode() { return companyCode; } public void setCompanyCode(String companyCode) { this.companyCode = companyCode; } public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public String getoIntX() { return oIntX; } public void setoIntX(String oIntX) { this.oIntX = oIntX; } public String getoIntY() { return oIntY; } public void setoIntY(String oIntY) { this.oIntY = oIntY; } public String getWarehouseCode() { return warehouseCode; } public void setWarehouseCode(String warehouseCode) { this.warehouseCode = warehouseCode; } public String getIntX() { return intX; } public void setIntX(String intX) { this.intX = intX; } public String getIntY() { return intY; } public void setIntY(String intY) { this.intY = intY; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getGoodsShelfNo() { return goodsShelfNo; } public void setGoodsShelfNo(String goodsShelfNo) { this.goodsShelfNo = goodsShelfNo; } public Integer getIsEnable() { return isEnable; } public void setIsEnable(Integer isEnable) { this.isEnable = isEnable; } public Integer getIsLocked() { return isLocked; } public void setIsLocked(Integer isLocked) { this.isLocked = isLocked; } public Integer getNum() { return num; } public void setNum(Integer num) { this.num = num; } public Integer getIsEmpty() { return isEmpty; } public void setIsEmpty(Integer isEmpty) { this.isEmpty = isEmpty; } }