初步版本251204
This commit is contained in:
26
FATrace.Com/ParsedCodeInfo.cs
Normal file
26
FATrace.Com/ParsedCodeInfo.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FATrace.Com
|
||||
{
|
||||
public class ParsedCodeInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// 直接的条码
|
||||
/// 从这个条码中解析出其他信息
|
||||
/// </summary>
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user