14 lines
316 B
C#
14 lines
316 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Equipment
|
|||
|
|
{
|
|||
|
|
public class QueryStandStatusRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 站台类型
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("standType")]
|
|||
|
|
public int? StandType { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|