using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common
{
///
/// 出库单据上传
///
public class Houseounbound
{
///
/// 单号
///
public string No { get; set; }
///
/// 仓库
///
public string OutWareHouse { get; set; }
///
/// 单据大类
///
public string OrderType { get; set; }
///
/// 单据小类
///
public string TransactionCode { get; set; }
///
/// 出入库类型
///
public int InoutType { get; set; }
///
/// 时间
///
public string order_Time { get; set; }
public List> DetailList { get; set; }
}
}