2024-10-07 09:51:55 +08:00
|
|
|
|
using DataCheck;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
}
|