58 lines
860 B
Java
58 lines
860 B
Java
|
|
package com.wms.entity.app.container;
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 发送四向车任务的请求类
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class SendContainerTaskRequest {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 请求号
|
||
|
|
*/
|
||
|
|
@JsonProperty("requestid")
|
||
|
|
private String requestid;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 秘钥
|
||
|
|
*/
|
||
|
|
@JsonProperty("key")
|
||
|
|
private String key;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* wms任务号
|
||
|
|
*/
|
||
|
|
@JsonProperty("wmstaskid")
|
||
|
|
private String wmstaskid;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 容器号
|
||
|
|
*/
|
||
|
|
@JsonProperty("palletno")
|
||
|
|
private String palletno;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 源点
|
||
|
|
*/
|
||
|
|
@JsonProperty("fromcellno")
|
||
|
|
private String fromcellno;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 目的点
|
||
|
|
*/
|
||
|
|
@JsonProperty("tocellno")
|
||
|
|
private String tocellno;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 任务类型
|
||
|
|
*/
|
||
|
|
@JsonProperty("tasktype")
|
||
|
|
private String tasktype;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|