2024-07-15 14:10:46 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
2024-06-12 07:42:37 +08:00
|
|
|
|
|
|
|
|
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
2024-05-14 16:30:56 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 申请入库
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ApplyInRequest
|
|
|
|
|
|
{
|
2024-06-12 07:42:37 +08:00
|
|
|
|
public ApplyInRequest(string? point, string? vehicleNo, string? codeMessage = "", string? remark = "")
|
|
|
|
|
|
{
|
|
|
|
|
|
Point = point;
|
|
|
|
|
|
VehicleNo = vehicleNo;
|
|
|
|
|
|
CodeMessage = codeMessage;
|
|
|
|
|
|
Remark = remark;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public ApplyInRequest() { }
|
|
|
|
|
|
|
2024-05-14 16:30:56 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 申请点位
|
|
|
|
|
|
/// </summary>
|
2024-07-15 14:10:46 +08:00
|
|
|
|
[JsonProperty("point")]
|
2024-05-14 16:30:56 +08:00
|
|
|
|
public string? Point { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 载具号
|
|
|
|
|
|
/// </summary>
|
2024-07-15 14:10:46 +08:00
|
|
|
|
[JsonProperty("vehicleNo")]
|
2024-05-14 16:30:56 +08:00
|
|
|
|
public string? VehicleNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 条码信息
|
|
|
|
|
|
/// </summary>
|
2024-07-15 14:10:46 +08:00
|
|
|
|
[JsonProperty("codeMessage")]
|
2024-05-14 16:30:56 +08:00
|
|
|
|
public string? CodeMessage { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备注
|
|
|
|
|
|
/// </summary>
|
2024-07-15 14:10:46 +08:00
|
|
|
|
[JsonProperty("remark")]
|
2024-05-14 16:30:56 +08:00
|
|
|
|
public string? Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|