using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class TransferApplication
{
///
/// 源头单据
///
public string TransCode { get; set; }
///
/// 单据行
///
public string TransSequence { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 操作人
///
public string User { get; set; }
///
/// 操作时间
///
public string Mtime { get; set; }
///
/// 类型(1一步调拨,2二部调拨)
///
public string TransType { get; set; }
public List Detail = new List();
///
/// 目标库位
///
public string LocationCode { get; set; }
///
/// 目标仓库
///
public string WarehouseCode { get; set; }
///
/// 条码
///
public string Lotno { get; set; }
///
/// 数量
///
public double Quantity { get; set; }
///
/// 辅计数量
///
public string Amount { get; set; }
}
public class TransferApplicationDetailDoc
{
///
/// 目标库位
///
public string LocationCode { get; set; }
///
/// 目标仓库
///
public string WarehouseCode { get; set; }
///
/// 条码
///
public string LotNo { get; set; }
///
/// 数量
///
public string CurrentQuantity { get; set; }
///
/// 辅计数量
///
public string Amount { get; set; }
}
}