From bf6f1710660c9f7108ada5d390caac28b854aa5f Mon Sep 17 00:00:00 2001 From: icewint Date: Thu, 1 Aug 2024 21:16:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=94=B5=E5=AD=90?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E8=AF=B7=E6=B1=82=E7=9A=84=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E7=9A=84=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ElTagComfirmButtonClickRequest.cs | 31 ++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) 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; }