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

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

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

public class Points {
    //位置编码
    private String pointNo;
    //x轴
    private Integer xpos;
    //y轴
    private Integer ypos;
    //是否可用
    private Integer isEnable;
    //是否锁定
    private Integer isLocked;
    //地域id
    private Integer areaId;
    //货架种类
    private Integer shelfType;

    private Integer pointProperty;
    //货架编码
    private String goodsShelfNo;

    public String getPointNo() {
        return pointNo;
    }

    public void setPointNo(String pointNo) {
        this.pointNo = pointNo;
    }

    public Integer getXpos() {
        return xpos;
    }

    public void setXpos(Integer xpos) {
        this.xpos = xpos;
    }

    public Integer getYpos() {
        return ypos;
    }

    public void setYpos(Integer ypos) {
        this.ypos = ypos;
    }

    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 getAreaId() {
        return areaId;
    }

    public void setAreaId(Integer areaId) {
        this.areaId = areaId;
    }

    public Integer getShelfType() {
        return shelfType;
    }

    public void setShelfType(Integer shelfType) {
        this.shelfType = shelfType;
    }

    public Integer getPointProperty() {
        return pointProperty;
    }

    public void setPointProperty(Integer pointProperty) {
        this.pointProperty = pointProperty;
    }

    public String getGoodsShelfNo() {
        return goodsShelfNo;
    }

    public void setGoodsShelfNo(String goodsShelfNo) {
        this.goodsShelfNo = goodsShelfNo;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this)
                .append("pointNo", pointNo)
                .append("xpos", xpos)
                .append("ypos", ypos)
                .append("isEnable", isEnable)
                .append("isLocked", isLocked)
                .append("areaId", areaId)
                .append("shelfType", shelfType)
                .append("pointProperty", pointProperty)
                .append("goodsShelfNo", goodsShelfNo)
                .toString();
    }
}