using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
///
/// 获取条码信息输入信息
///
public class BarCodeCheckModel
{
///
/// 条码
///
public string BarCode { get; set; }
///
/// 源头单据
///
public string TransCode { get; set; }
///
/// 库位
///
public string LocationCode { get; set; }
///
/// 站点
///
public string WorkPoint { get; set; }
///
/// 单据类型
///
public string TransType { get; set; }
}
}