using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
///
/// 移库
///
public class ICSLibraryModel
{
///
/// 条码
///
public string LotNo { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 仓库
///
public string WarehouseCode { get; set; }
///
/// 库位
///
public string LocationCode { get; set; }
///
/// 用户
///
public string User { get; set; }
///
/// 源头单据
///
public string TransCode { get; set; }
///
/// 行号
///
public string TransSequence { get; set; }
}
}