Product_Wms/WcsMain/ApiServe/Controllers/Dto/Equipment/PickStandInfoResponse.cs

22 lines
453 B
C#
Raw Normal View History

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