using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.BllSoDto
{
public class WaveMageDto
{
public int Id { get; set; }
///
/// 波次单号
///
public string WaveNo { get; set; }
///
/// 状态
///
public string Status { get; set; }
///
/// 来源
///
public string Origin { get; set; }
///
/// 客户编号
///
public string CustomerNo { get; set; }
///
/// 客户名称
///
public string CustomerName { get; set; }
///
/// 批次号
///
public string LotNo { get; set; }
///
/// 批次描述
///
public string LotText { get; set; }
///
/// 供货批次
///
public string SupplierLot { get; set; }
///
/// 承运商
///
public int? LogisticsId { get; set; }
///
/// 承运商名称
///
public string LogisticsName { get; set; }
///
/// 收货地址
///
public string Address { get; set; }
///
/// 创建日期
///
public DateTime CreateTime { get; set; }
///
/// 更新日期
///
public DateTime? UpdateTime { get; set; }
///
/// 创建人
///
public string CreateUserName { get; set; }
///
/// 更新人
///
public string UpdateUserName { get; set; }
}
}