using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Tencent
{
///
/// TencentOCR ID证件识别
///
public class IDCardOCRDto:DtoBase
{
public int UserId { get; set; }
///
/// 图片的 Base64 值。要求图片经Base64编码后不超过 7M,分辨率建议500*800以上,支持PNG、JPG、JPEG、BMP格式。建议卡片部分占据图片2/3以上。
///
public string picBase64 { get; set; }
///
/// 0 FRONT:身份证有照片的一面(人像面)
/// 1 BACK:身份证有国徽的一面(国徽面)
/// 该参数如果不填,将为您自动判断身份证正反面。
///
public int CardSide { get; set; }
}
}