22 lines
441 B
C#
22 lines
441 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.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; }
|
|
|
|
} |