diff --git a/WcsMain/ApiClient/DataEntity/WmsEntity/ElTagComfirmButtonClickRequest.cs b/WcsMain/ApiClient/DataEntity/WmsEntity/ElTagComfirmButtonClickRequest.cs index 993312a..dcdf959 100644 --- a/WcsMain/ApiClient/DataEntity/WmsEntity/ElTagComfirmButtonClickRequest.cs +++ b/WcsMain/ApiClient/DataEntity/WmsEntity/ElTagComfirmButtonClickRequest.cs @@ -7,34 +7,63 @@ namespace WcsMain.ApiClient.DataEntity.WmsEntity; /// public class ElTagComfirmButtonClickRequest { - + /// + /// 任务组 + /// [JsonProperty("taskGroup")] public string? TaskGroup { get; set; } + /// + /// 任务类型 + /// [JsonProperty("taskType")] public int? TaskType { get; set; } + /// + /// 载具号 + /// [JsonProperty("vehicleNo")] public string? VehicleNo { get; set; } + /// + /// 订单号 + /// [JsonProperty("orderId")] public string? OrderId { get; set; } + /// + /// 任务号 + /// [JsonProperty("taskId")] public string? TaskId { get; set; } + /// + /// 点位 + /// [JsonProperty("location")] public string? Location { get; set; } + /// + /// 物料ID + /// [JsonProperty("goodsId")] public string? GoodsId { get; set; } + /// + /// 物料名称 + /// [JsonProperty("goodsName")] public string? GoodsName { get; set; } + /// + /// 需求数量 + /// [JsonProperty("needNum")] public int? NeedNum { get; set; } + /// + /// 确认数量 + /// [JsonProperty("confirmNum")] public int? ConfirmNum { get; set; }