18 lines
304 B
C#
18 lines
304 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WmsMobileServe.ApiClient.Mes.Dto;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 空箱入库
|
|||
|
|
/// </summary>
|
|||
|
|
public class EmptyVehicleInReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 载具号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("vehicleNo")]
|
|||
|
|
public string? VehicleNo { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|