StoragePosExcel.java 911 字节
package com.myproject.bean.excel;

/**
 * Created by kangmor on 2015/11/17.
 */
public class StoragePosExcel {
    private String posName;

    //进料优先级,数字越大优先级越高,例:1-1的优先级为100 仓1-2的优先级200,那么入仓时就会优先进入1-2仓
    private  double priority = 0f;
    //高度
    private int h;
    //宽度(料盘尺寸)
    private int w;

    public String getPosName() {
        return posName;
    }

    public void setPosName(String posName) {
        this.posName = posName;
    }

    public int getH() {
        return h;
    }

    public void setH(int h) {
        this.h = h;
    }

    public int getW() {
        return w;
    }

    public void setW(int w) {
        this.w = w;
    }

    public double getPriority() {
        return priority;
    }

    public void setPriority(double priority) {
        this.priority = priority;
    }
}