You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace XGL.Models.Model.OrderPrepare
|
|
|
|
|
|
{
|
|
|
|
|
|
public class MaterialPlanModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string reqCode { get; set; }
|
|
|
|
|
|
public string reqTime { get; set; }
|
|
|
|
|
|
public string factory { get; set; }
|
|
|
|
|
|
public string planNo { get; set; }
|
|
|
|
|
|
public List<skuInfo> data { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class skuInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
public string sku { get; set; }
|
|
|
|
|
|
public string loadNo { get; set; }
|
|
|
|
|
|
public List<unloadNoInfo> unLoadItems { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class unloadNoInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
public string unloadNo { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class MaterialPlanModelResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public string reqCode { get; set; }
|
|
|
|
|
|
public string code { get; set; }
|
|
|
|
|
|
public string message { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|