using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
///
/// 上架添加
///
public class GiftOutModel
{
///
/// 操作人
///
public string User { get; set; }
///
/// 操作人姓名
///
public string UserName { get; set; }
///
/// 操作时间
///
public string MTime { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 类型
///
public string TransType { get; set; }
public List Detail { get; set; }
}
public class GiftOutModelList
{
///
/// 条码
///
public string LotNo { get; set; }
///
/// 数量
///
public string Quantity { get; set; }
///
/// 物料编码
///
public string InvCode { get; set; }
///
/// 箱码
///
public string ContainerCode { get; set; }
}
}