<optimize>添加电子标签请求的实体的注释
This commit is contained in:
parent
579852e4bd
commit
bf6f171066
|
|
@ -7,34 +7,63 @@ namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ElTagComfirmButtonClickRequest
|
public class ElTagComfirmButtonClickRequest
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 任务组
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("taskGroup")]
|
[JsonProperty("taskGroup")]
|
||||||
public string? TaskGroup { get; set; }
|
public string? TaskGroup { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 任务类型
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("taskType")]
|
[JsonProperty("taskType")]
|
||||||
public int? TaskType { get; set; }
|
public int? TaskType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 载具号
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("vehicleNo")]
|
[JsonProperty("vehicleNo")]
|
||||||
public string? VehicleNo { get; set; }
|
public string? VehicleNo { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 订单号
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("orderId")]
|
[JsonProperty("orderId")]
|
||||||
public string? OrderId { get; set; }
|
public string? OrderId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 任务号
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("taskId")]
|
[JsonProperty("taskId")]
|
||||||
public string? TaskId { get; set; }
|
public string? TaskId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 点位
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("location")]
|
[JsonProperty("location")]
|
||||||
public string? Location { get; set; }
|
public string? Location { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 物料ID
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("goodsId")]
|
[JsonProperty("goodsId")]
|
||||||
public string? GoodsId { get; set; }
|
public string? GoodsId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 物料名称
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("goodsName")]
|
[JsonProperty("goodsName")]
|
||||||
public string? GoodsName { get; set; }
|
public string? GoodsName { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 需求数量
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("needNum")]
|
[JsonProperty("needNum")]
|
||||||
public int? NeedNum { get; set; }
|
public int? NeedNum { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 确认数量
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("confirmNum")]
|
[JsonProperty("confirmNum")]
|
||||||
public int? ConfirmNum { get; set; }
|
public int? ConfirmNum { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user