using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FATrace.Com { public class ParsedCodeInfo { /// /// 直接的条码 /// 从这个条码中解析出其他信息 /// public string Code { get; set; } = string.Empty; public string RawCode { get; set; } = string.Empty; public string RawName { get; set; } = string.Empty; public string Batch { get; set; } = string.Empty; public decimal Weight { get; set; } public int ShelfLifeMonths { get; set; } public string RegionCode { get; set; } = string.Empty; public string RegionName { get; set; } = string.Empty; public int Count { get; set; } } }