using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { /// /// 获取条码信息输入信息 /// public class BarCodeModel { public string Code { get; set; } public string TransType { get; set; } public string WorkPoint { get; set; } /// /// 源头单据 /// public string TransCode { get; set; } /// /// 源头单号 /// public string TransSequence { get; set; } /// /// 用于排除本次已扫描的条码(多个用'',分割,如:'001','002') /// public string ScanLotCode { get; set; } public string WHCode { get; set; } /// /// 用户 /// public string User { get; set; } /// /// 是否拣配 /// public string IsPick { get; set; } /// /// 盘点类型 /// public string CheckKind { get; set; } } }