using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA.Common.CustomModels
{
public class OutBoundDetailModel
{
///
/// 货位ID
///
public string location_id { get; set; }
///
/// 重量
///
public string containerhead_text1 { get; set; }
///
/// 片数
///
public string containerdtl_qty { get; set; }
///
/// 批次号
///
public string containerdtl_batch { get; set; }
///
/// 物料编号
///
public string materiel_id { get; set; }
///
/// 物料名称
///
public string materiel_name { get; set; }
///
/// 入库时间
///
public DateTime containerdtl_createtime { get; set; }
///
/// 任务状态
///
public string task_status { get; set; }
///
/// 库存ID
///
public string containerdtl_id { get; set; }
///
/// 库存ID
///
public string containerhead_text3 { get; set; }
///
/// 库存ID
///
public string containerdtl_state { get; set; }
}
}