complete config for reading excel data
This commit is contained in:
@@ -60,6 +60,7 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="OrderConfig.cs" />
|
||||
<Compile Include="TextPoint.cs" />
|
||||
<Compile Include="OCRTextResult.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
|
||||
27
LibDataBase/OrderConfig.cs
Normal file
27
LibDataBase/OrderConfig.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LibDataBase
|
||||
{
|
||||
public class OrderConfig
|
||||
{
|
||||
public string QSV;
|
||||
public int NumberOfLanes;
|
||||
public Dictionary<int, List<string>> OCRRequest = new Dictionary<int, List<string>>();
|
||||
public Dictionary<int, string> OCRDesign = new Dictionary<int, string>();
|
||||
public string ProductStandard;
|
||||
public double Width;
|
||||
public double Height;
|
||||
public double Gradient;
|
||||
public bool ParseQSV;
|
||||
public bool ParseProduct;
|
||||
public bool ParseArrange;
|
||||
public double DistX;
|
||||
public double DistY;
|
||||
public int ColorMax;
|
||||
public string ColorArray;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user