package com.zy.asrs.domain.vo;
|
|
/**
|
* Created by vincent on 2020-06-02
|
*/
|
public class CrnMsgTableVo {
|
|
// 堆垛机号
|
private String crnNo;
|
|
// 状态
|
private String status;
|
|
// 工作号
|
private String workNo;
|
|
// 源站
|
private String sourceStaNo;
|
|
// 目标站
|
private String staNo;
|
|
// 源库位
|
private String sourceLocNo;
|
|
// 目标库位
|
private String locNo;
|
|
// 异常
|
private String error;
|
|
// 原点
|
private String origin;
|
|
// 命令
|
private String command;
|
|
public CrnMsgTableVo() {
|
}
|
|
public CrnMsgTableVo(String crnNo, String status, String workNo, String sourceStaNo, String staNo, String sourceLocNo, String locNo, String error, String origin, String command) {
|
this.crnNo = crnNo;
|
this.status = status;
|
this.workNo = workNo;
|
this.sourceStaNo = sourceStaNo;
|
this.staNo = staNo;
|
this.sourceLocNo = sourceLocNo;
|
this.locNo = locNo;
|
this.error = error;
|
this.origin = origin;
|
this.command = command;
|
}
|
|
public String getCrnNo() {
|
return crnNo;
|
}
|
|
public void setCrnNo(String crnNo) {
|
this.crnNo = crnNo;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getWorkNo() {
|
return workNo;
|
}
|
|
public void setWorkNo(String workNo) {
|
this.workNo = workNo;
|
}
|
|
public String getSourceStaNo() {
|
return sourceStaNo;
|
}
|
|
public void setSourceStaNo(String sourceStaNo) {
|
this.sourceStaNo = sourceStaNo;
|
}
|
|
public String getStaNo() {
|
return staNo;
|
}
|
|
public void setStaNo(String staNo) {
|
this.staNo = staNo;
|
}
|
|
public String getSourceLocNo() {
|
return sourceLocNo;
|
}
|
|
public void setSourceLocNo(String sourceLocNo) {
|
this.sourceLocNo = sourceLocNo;
|
}
|
|
public String getLocNo() {
|
return locNo;
|
}
|
|
public void setLocNo(String locNo) {
|
this.locNo = locNo;
|
}
|
|
public String getError() {
|
return error;
|
}
|
|
public void setError(String error) {
|
this.error = error;
|
}
|
|
public String getOrigin() {
|
return origin;
|
}
|
|
public void setOrigin(String origin) {
|
this.origin = origin;
|
}
|
|
public String getCommand() {
|
return command;
|
}
|
|
public void setCommand(String command) {
|
this.command = command;
|
}
|
}
|