30 lines
684 B
C#
30 lines
684 B
C#
|
|
using DataCheck;
|
|||
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// SetPickTask 接口的请求实体类
|
|||
|
|
/// </summary>
|
|||
|
|
public class SetPickTaskRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 载具号
|
|||
|
|
/// </summary>
|
|||
|
|
[DataRules(false, "^.+$")]
|
|||
|
|
[JsonPropertyName("vehicleNo")]
|
|||
|
|
public string? VehicleNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 拣选站台
|
|||
|
|
/// </summary>
|
|||
|
|
[DataRules]
|
|||
|
|
[JsonPropertyName("pickStand")]
|
|||
|
|
public List<string>? PickStand { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备注信息
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("remark")]
|
|||
|
|
public string? Remark { get; set; }
|
|||
|
|
}
|