自动化立体仓库 - WMS系统
lty
3 天以前 6d077ee150e66d50f56c61670f97d2baaa1b61a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.zy.asrs.entity;
 
public class CrnRowInfo {
    private final int crnNo;
    private final int nearRow;
    private final int curRow;
    private final int rowCount;
    private final int times;
 
    public CrnRowInfo(int crnNo, int nearRow, int curRow, int rowCount, int times) {
        this.crnNo = crnNo;
        this.nearRow = nearRow;
        this.curRow = curRow;
        this.rowCount = rowCount;
        this.times = times;
    }
 
    public int getCrnNo() {
        return crnNo;
    }
 
    public int getNearRow() {
        return nearRow;
    }
 
    public int getCurRow() {
        return curRow;
    }
 
    public int getRowCount() {
        return rowCount;
    }
 
    public int getTimes() {
        return times;
    }
}