CNCEC_SUBQHSE_WUHUAN/SGGL/SgManager.AI/IDCardRecognitionModel.cs

139 lines
2.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SgManager.AI
{ /// <summary>
/// 身份证识别 实体
/// </summary>
public class IDCardRecognitionModel
{
public IDCardRecognitionSuccessResultModel successModel { get; set; }
public ErrorTypeModel errorTypeModel { get; set; }
}
public class IDCardRecognitionSuccessResultModel
{
public long log_id { get; set; }
public int direction { get; set; }
public int words_result_num { get; set; }
public string image_status { get; set; }
public string idcard_type { get; set; }
public string edit_tool { get; set; }
public string risk_type { get; set; }
public Words_result words_result { get; set; }
}
public class Words_result
{
public { get; set; }
public { get; set; }
public { get; set; }
public { get; set; }
public { get; set; }
public { get; set; }
public { get; set; }
public { get; set; }
public { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class
{
public Location location { get; set; }
public string words { get; set; }
}
public class Location
{
public int left { get; set; }
public int top { get; set; }
public int width { get; set; }
public int height { get; set; }
}
public class DicModel
{
public string words { get; set; }
public Location location { get; set; }
}
}