This commit is contained in:
@ -93,4 +93,66 @@ namespace Epost.Model
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 取消任务
|
||||
|
||||
public class AgvCancleModel
|
||||
{
|
||||
public CancleData data { get; set; }
|
||||
}
|
||||
|
||||
public class CancleData
|
||||
{
|
||||
public List<CancleHeader> header { get; set; }
|
||||
}
|
||||
|
||||
public class CancleHeader
|
||||
{
|
||||
public string warehouseId { get; set; }
|
||||
public string groupTaskId { get; set; }
|
||||
public string palletId { get; set; }
|
||||
public string userId { get; set; }
|
||||
public string userName { get; set; }
|
||||
public string notes { get; set; }
|
||||
public string reason { get; set; }
|
||||
public string udf01 { get; set; }
|
||||
public string udf02 { get; set; }
|
||||
public string udf03 { get; set; }
|
||||
public string udf04 { get; set; }
|
||||
public string udf05 { get; set; }
|
||||
public string udf06 { get; set; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 绑定解绑
|
||||
|
||||
public class agvBindPodModel
|
||||
{
|
||||
public agvBindData data { get; set; }
|
||||
}
|
||||
|
||||
public class agvBindData
|
||||
{
|
||||
public List<agvBindHeader> header { get; set; }
|
||||
}
|
||||
|
||||
public class agvBindHeader
|
||||
{
|
||||
public string warehouseId { get; set; }
|
||||
public string indBind { get; set; }
|
||||
public string palletId { get; set; }
|
||||
public string positionCode { get; set; }
|
||||
public string userId { get; set; }
|
||||
public string userName { get; set; }
|
||||
public string notes { get; set; }
|
||||
public string udf01 { get; set; }
|
||||
public string udf02 { get; set; }
|
||||
public string udf03 { get; set; }
|
||||
public string udf04 { get; set; }
|
||||
public string udf05 { get; set; }
|
||||
public string udf06 { get; set; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
Reference in New Issue
Block a user