wms_serve_m_jinwangbancai/WmsMobileServe/ApiServe/Mobile/Dto/BindingVehicleInEbsReq.cs

63 lines
1.2 KiB
C#
Raw Normal View History

2024-12-07 15:56:37 +08:00
using System.Text.Json.Serialization;
namespace WmsMobileServe.ApiServe.Mobile.Dto;
public class BindingVehicleInEbsReq
{
/// 载具号
/// </summary>
[JsonPropertyName("vehicleNo")]
public string? VehicleNo { get; set; }
/// <summary>
/// 入库模式
/// </summary>
/// <remarks>
/// 1 -- 直接入库
/// 2 -- 去往站台
/// </remarks>
[JsonPropertyName("taskType")]
public int? TaskType { get; set; }
/// <summary>
/// 绑定的物料
/// </summary>
[JsonPropertyName("bindingGoods")]
2024-12-29 13:06:15 +08:00
public List<BindingGoods>? BindingGoodsDetails { get; set; }
2024-12-07 15:56:37 +08:00
}
2024-12-29 13:06:15 +08:00
public class BindingGoods
2024-12-07 15:56:37 +08:00
{
/// <summary>
2024-12-29 13:06:15 +08:00
/// 采购单号
2024-12-07 15:56:37 +08:00
/// </summary>
2024-12-29 13:06:15 +08:00
[JsonPropertyName("poHeaderId")]
public string? PoHeaderId { get; set; }
2024-12-07 15:56:37 +08:00
/// <summary>
2024-12-29 13:06:15 +08:00
/// 物料号
2024-12-07 15:56:37 +08:00
/// </summary>
2024-12-29 13:06:15 +08:00
[JsonPropertyName("itemId")]
public string? ItemId { get; set; }
2024-12-07 15:56:37 +08:00
/// <summary>
2024-12-29 13:06:15 +08:00
/// 批次号
2024-12-07 15:56:37 +08:00
/// </summary>
2024-12-29 13:06:15 +08:00
[JsonPropertyName("batch")]
public string? Batch { get; set; }
2024-12-07 15:56:37 +08:00
/// <summary>
2024-12-29 13:06:15 +08:00
/// 数量
2024-12-07 15:56:37 +08:00
/// </summary>
2024-12-29 13:06:15 +08:00
[JsonPropertyName("quantity")]
public string? Quantity { get; set; }
2024-12-07 15:56:37 +08:00
}