using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.KBSWMS
{
public class ExamineViewModel
{
///
/// 来源单据号
///
public string TransCode { get; set; }
///
/// 来源单据行号
///
public string TransSequence { get; set; }
///
/// 用户
///
public string User { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 单据类型
///
public string TransType { get; set; } = "产成品入库-产成品入库单-mes";
///
/// 时间
///
public string MTime { get; set; }
public List Detail { get; set; }
}
public class DetailEntity
{
///
/// 条码
///
public string LotNo { get; set; }
public string ContainerCode { get; set; }
///
/// 单据行号
///
public string TransSequence { get; set; }
///
/// 类型
///
public string ScanType { get; set; } = "LOTNO";
///
/// 物料
///
public string InvCode { get; set; }
///
/// 单号
///
public string TransCode { get; set; }
///
/// 库位编码
///
public string LocationCode { get; set; }
///
/// 数量
///
public string Quantity { get; set; }
///
/// 仓库编码
///
public string WarehouseCode { get; set; }
}
}