32 lines
600 B
Java
32 lines
600 B
Java
|
|
package com.wms.entity.app;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 完成当前载具的当次拣货任务
|
||
|
|
*/
|
||
|
|
public class FinishVehicleAndPartRequest {
|
||
|
|
/**
|
||
|
|
* wms任务号
|
||
|
|
*/
|
||
|
|
private String wmsTaskId;
|
||
|
|
/**
|
||
|
|
* 实际拣货数量
|
||
|
|
*/
|
||
|
|
private Integer realPickNum;
|
||
|
|
|
||
|
|
public String getWmsTaskId() {
|
||
|
|
return wmsTaskId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWmsTaskId(String wmsTaskId) {
|
||
|
|
this.wmsTaskId = wmsTaskId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getRealPickNum() {
|
||
|
|
return realPickNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRealPickNum(Integer realPickNum) {
|
||
|
|
this.realPickNum = realPickNum;
|
||
|
|
}
|
||
|
|
}
|