wcs_serve_wuxikate/WcsMain/ApiServe/Controllers/Dto/WMSEntity/Equipment/QueryStandStatusRequest.cs

14 lines
316 B
C#
Raw Normal View History

2025-01-03 14:36:27 +08:00
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Equipment
{
public class QueryStandStatusRequest
{
/// <summary>
/// 站台类型
/// </summary>
[JsonPropertyName("standType")]
public int? StandType { get; set; }
}
}