|
@@ -1,6 +1,7 @@
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Text;
|
|
|
+using System.Text.Json;
|
|
|
|
|
|
namespace TEAMModelOS.SDK.Models.Cosmos.Common
|
|
|
{
|
|
@@ -35,6 +36,12 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
|
|
|
/// </summary>
|
|
|
public int pageHeight { get; set; }
|
|
|
/// <summary>
|
|
|
+ /// 标记是读取填涂黑块还是读取二维码
|
|
|
+ /// </summary>
|
|
|
+ public string infoMode { get; set; }
|
|
|
+ public List<JsonElement> infoPos{ get; set; } = new List<JsonElement>();
|
|
|
+ public List<JsonElement> objectivePos { get; set; } = new List<JsonElement>();
|
|
|
+ /// <summary>
|
|
|
/// 页码块数量
|
|
|
/// </summary>
|
|
|
public int pageNumBlockCount { get; set; }
|