sunpengfei
2025-08-20 b15ba0723040b5e9a348662a09af824f2d5ae9e6
FlexJobApi.Core/Models/CommonServer/OcrUtils/Commands/GetIdentityFrontOcrCommand.cs
copy from FlexJobApi.Core/Models/CommonServer/OcrUtils/Commands/GetIdentityOcrCommand.cs copy to FlexJobApi.Core/Models/CommonServer/OcrUtils/Commands/GetIdentityFrontOcrCommand.cs
File was copied from FlexJobApi.Core/Models/CommonServer/OcrUtils/Commands/GetIdentityOcrCommand.cs
@@ -8,10 +8,10 @@
namespace FlexJobApi.Core
{
    /// <summary>
    /// 文字识别身份证
    /// 文字识别身份证正面
    /// </summary>
    [Resource([EnumResourceController.CommonServerOcrUtils], Method = EnumResourceMethod.Post)]
    public class GetIdentityOcrCommand : IRequest<GetIdentityOcrCommandResult>
    public class GetIdentityFrontOcrCommand : IRequest<GetIdentityFrontOcrCommandResult>
    {
        /// <summary>
        /// 通道
@@ -37,7 +37,7 @@
    /// <summary>
    /// 文字识别身份证
    /// </summary>
    public class GetIdentityOcrCommandResult
    public class GetIdentityFrontOcrCommandResult
    {
        /// <summary>
        /// 地址
@@ -47,6 +47,6 @@
        /// <summary>
        /// 模型
        /// </summary>
        public BaiduOcrBusinessLicenseResultModel Model { get; set; }
        public BaiduOcrIdentityFrontResultModel Model { get; set; }
    }
}