56 lines
961 B
Java
56 lines
961 B
Java
|
|
package com.wms.entity.app.container;
|
||
|
|
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
import jakarta.validation.constraints.NotBlank;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class CreateFeedPalletTaskResponse {
|
||
|
|
public CreateFeedPalletTaskResponse() {
|
||
|
|
}
|
||
|
|
|
||
|
|
public CreateFeedPalletTaskResponse(String code, String message) {
|
||
|
|
this.code = code;
|
||
|
|
this.message = message;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 响应代码
|
||
|
|
*/
|
||
|
|
@JsonProperty("code")
|
||
|
|
private String code;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* wms 任务号
|
||
|
|
*/
|
||
|
|
@JsonProperty("wmstaskid")
|
||
|
|
private String wmsTaskId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 载具号
|
||
|
|
*/
|
||
|
|
@JsonProperty("palletno")
|
||
|
|
private String palletNo;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 出盘口
|
||
|
|
*/
|
||
|
|
@JsonProperty("fromcellno")
|
||
|
|
private String fromCellNo;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 入盘口
|
||
|
|
*/
|
||
|
|
@JsonProperty("tocellno")
|
||
|
|
private String toCellNo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 信息
|
||
|
|
*/
|
||
|
|
@JsonProperty("message")
|
||
|
|
private String message;
|
||
|
|
}
|