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