package com.zy.asrs.domain.param; /** * Created by vincent on 2020-06-02 */ public class CrnOperatorParam { // 堆垛机号 private String crnNo; // 源站 private String sourceStaNo; // 源库位-排 private String sourceRow; // 源库位-列 private String sourceBay; // 源库位-层 private String sourceLev; // 目标站 private String staNo; // 目标库位-排 private String row; // 目标库位-列 private String bay; // 目标库位-层 private String lev; public String getCrnNo() { return crnNo; } public void setCrnNo(String crnNo) { this.crnNo = crnNo; } public String getSourceStaNo() { return sourceStaNo; } public void setSourceStaNo(String sourceStaNo) { this.sourceStaNo = sourceStaNo; } public String getSourceRow() { return sourceRow; } public void setSourceRow(String sourceRow) { this.sourceRow = sourceRow; } public String getSourceBay() { return sourceBay; } public void setSourceBay(String sourceBay) { this.sourceBay = sourceBay; } public String getSourceLev() { return sourceLev; } public void setSourceLev(String sourceLev) { this.sourceLev = sourceLev; } public String getStaNo() { return staNo; } public void setStaNo(String staNo) { this.staNo = staNo; } public String getRow() { return row; } public void setRow(String row) { this.row = row; } public String getBay() { return bay; } public void setBay(String bay) { this.bay = bay; } public String getLev() { return lev; } public void setLev(String lev) { this.lev = lev; } }