Points.java 1.47 KB
package com.huaheng.api.ACS.domain;

import org.apache.commons.lang3.builder.ToStringBuilder;

/**
 * @author ricard
 * @time 2019/2/26
 * 货架实体
 */

public class Points {
    //id
    private int id;
    //仓库编码
    private String warehouseCode;
   //货架号
    private String goodsShelfNo;
    //是否可用
    private Integer isEnable;
    //货架状态
    private Integer isLocked;
    private String intX;
    private String intY;

    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 int getId() {
        return id;
    }

    public void setId(int 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;
    }
}