36 lines
671 B
C#
36 lines
671 B
C#
|
|
using DataCheck;
|
|||
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// wms 推送站台拣选完成
|
|||
|
|
/// </summary>
|
|||
|
|
public class DisposeStandRequest
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 拣选站台
|
|||
|
|
/// </summary>
|
|||
|
|
[DataRules]
|
|||
|
|
[JsonPropertyName("pickStand")]
|
|||
|
|
public string? PickStand { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 拣选料箱
|
|||
|
|
/// </summary>
|
|||
|
|
[DataRules]
|
|||
|
|
[JsonPropertyName("vehicleNo")]
|
|||
|
|
public string? VehicleNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 状态
|
|||
|
|
/// </summary>
|
|||
|
|
[DataRules]
|
|||
|
|
[JsonPropertyName("status")]
|
|||
|
|
public int? Status { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|