using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.Container;
///
/// 四向车请求任务的返回类
///
public class CreateInstoreTaskResoponse
{
///
/// 响应码
///
[JsonPropertyName("code")]
public string? Code { get; set; }
///
/// 任务号
///
[JsonPropertyName("wmstaskid")]
public string? WmsTaskId { get; set; }
///
/// 载具号
///
[JsonPropertyName("palletno")]
public string? PalletNo { get; set; }
///
/// 起点位置
///
[JsonPropertyName("fromcellno")]
public string? FromCellNo { get; set; }
///
/// 终点位置
///
[JsonPropertyName("tocellno")]
public string? ToCellNo { get; set; }
///
/// 响应信息
///
[JsonPropertyName("message")]
public string? Message { get; set; }
}