2024-10-07 09:51:55 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiServe.Dto.Equipment;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 拣选站台信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class PickStandInfoResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 站台号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("standId")]
|
|
|
|
|
|
public string? StandId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 箱子号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("vehicleNo")]
|
|
|
|
|
|
public string? VehicleNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|