59 lines
1.2 KiB
C#
59 lines
1.2 KiB
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请入库
|
|||
|
|
/// </summary>
|
|||
|
|
public class ApplyInRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请点位
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("point")]
|
|||
|
|
public string? Point { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 载具号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("vehicleNo")]
|
|||
|
|
public string? VehicleNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 条码信息
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("code")]
|
|||
|
|
public string? Code { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 重量
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("weight")]
|
|||
|
|
public decimal? Weight { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 载具类型
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("vehicleType")]
|
|||
|
|
public string? VehicleType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 载具尺寸
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("vehicleSize")]
|
|||
|
|
public string? VehicleSize { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用1
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("spare1")]
|
|||
|
|
public string? Spare1 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用2
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("spare2")]
|
|||
|
|
public string? Spare2 { get; set; }
|
|||
|
|
|
|||
|
|
}
|