14 lines
272 B
C#
14 lines
272 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Convey;
|
|||
|
|
|
|||
|
|
public class DisposeVehicleRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 点位
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("location")]
|
|||
|
|
public string? Location { get; set;}
|
|||
|
|
|
|||
|
|
}
|