38 lines
804 B
C#
38 lines
804 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Convey;
|
|
|
|
public class GetConveyTaskRequest
|
|
{
|
|
/// <summary>
|
|
/// 任务组
|
|
/// </summary>
|
|
[JsonPropertyName("taskGroup")]
|
|
public string? TaskGroup { get; set; }
|
|
|
|
/// <summary>
|
|
/// 载具号
|
|
/// </summary>
|
|
[JsonPropertyName("vehicleNo")]
|
|
public string? VehicleNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务类型
|
|
/// </summary>
|
|
[JsonPropertyName("taskType")]
|
|
public int? TaskType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点位
|
|
/// </summary>
|
|
[JsonPropertyName("location")]
|
|
public string[]? Locations { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[JsonPropertyName("remark")]
|
|
public string? Remark { get; set; }
|
|
|
|
}
|