using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using yunneiPda.orm;
namespace yunneiPda.Models
{
public class InStockOrderView
{
///
/// 类型:body header
///
public string type { get; set; }
public int orderCodeId { get; set; }
public string productCode { get; set; }
public int quantity { get; set; }
public string station { get; set; }
public string toStieCode { get; set; }
public string containerCode { get; set; }
public string materialName { get; set; }
public string supplier { get; set; }
public List dataList { get; set; }
}
public class inStockOrderDetail
{
public int id { get; set; }
public string serialNumber { get; set; }
}
}