This commit is contained in:
96
Epost.Model/TaskModel.cs
Normal file
96
Epost.Model/TaskModel.cs
Normal file
@ -0,0 +1,96 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
|
||||
public class TaskModel
|
||||
{
|
||||
public TaskData data { get; set; }
|
||||
}
|
||||
|
||||
public class TaskData
|
||||
{
|
||||
public List<TaskHeader> header { get; set; }
|
||||
}
|
||||
|
||||
public class TaskHeader
|
||||
{
|
||||
public string warehouseId { get; set; }
|
||||
public string wmsDocNo { get; set; }
|
||||
public string priority { get; set; }
|
||||
public string taskType { 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; }
|
||||
public List<TaskDetail> details { get; set; }
|
||||
public List<TaskDetails2> details2 { get; set; }
|
||||
}
|
||||
|
||||
public class TaskDetail
|
||||
{
|
||||
public string groupTaskId { get; set; }
|
||||
public string palletId { get; set; }
|
||||
public string spositionCode { get; set; }
|
||||
public string dpositionCode { 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; }
|
||||
}
|
||||
|
||||
public class TaskDetails2
|
||||
{
|
||||
public string groupTaskId { get; set; }
|
||||
public string palletId { get; set; }
|
||||
public string sku { get; set; }
|
||||
public string skuDescr1 { get; set; }
|
||||
public string qty { get; set; }
|
||||
public string lotatt01 { get; set; }
|
||||
public string lotatt02 { get; set; }
|
||||
public string lotatt04 { get; set; }
|
||||
public string lotatt07 { get; set; }
|
||||
public string lotatt08 { 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; }
|
||||
}
|
||||
|
||||
|
||||
#region 接口返回
|
||||
|
||||
public class RetMesModel
|
||||
{
|
||||
public ResponseModel Response { get; set; }
|
||||
}
|
||||
|
||||
public class ResponseModel
|
||||
{
|
||||
public ReturnRes _return { get; set; }
|
||||
}
|
||||
|
||||
public class ReturnRes
|
||||
{
|
||||
public string returnCode { get; set; }
|
||||
public string returnDesc { get; set; }
|
||||
public string returnFlag { get; set; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
Reference in New Issue
Block a user