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; } }