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