45 lines
1023 B
C#
45 lines
1023 B
C#
using Newtonsoft.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
|
|
|
/// <summary>
|
|
/// 申请入库
|
|
/// </summary>
|
|
public class ApplyInRequest
|
|
{
|
|
public ApplyInRequest(string? point, string? vehicleNo, string? codeMessage = "", string? remark = "")
|
|
{
|
|
Point = point;
|
|
VehicleNo = vehicleNo;
|
|
CodeMessage = codeMessage;
|
|
Remark = remark;
|
|
}
|
|
|
|
public ApplyInRequest() { }
|
|
|
|
/// <summary>
|
|
/// 申请点位
|
|
/// </summary>
|
|
[JsonProperty("point")]
|
|
public string? Point { get; set; }
|
|
|
|
/// <summary>
|
|
/// 载具号
|
|
/// </summary>
|
|
[JsonProperty("vehicleNo")]
|
|
public string? VehicleNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条码信息
|
|
/// </summary>
|
|
[JsonProperty("codeMessage")]
|
|
public string? CodeMessage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[JsonProperty("remark")]
|
|
public string? Remark { get; set; }
|
|
|
|
} |