SGGL_JT/SUBQHSE/WebAPI/Controllers/IDCardController.cs

56 lines
1.4 KiB
C#
Raw Normal View History

2025-04-07 17:43:30 +08:00
using BLL;
using Newtonsoft.Json.Linq;
using System;
using System.Linq;
using System.Web.Http;
namespace WebAPI.Controllers
{
/// <summary>
/// 读取身份证信息
/// </summary>
public class IDCardController : ApiController
{
#region
/// <summary>
/// 读取身份证信息
/// </summary>
/// <param name="url"></param>
/// <returns></returns>
public Model.ResponeData getIDCardInfo(string url)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = APIIDCardInfoService.ReadIDCardInfo(url);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
public Model.ResponeData getIDCardInfo2(string url)
{
var responeData = new Model.ResponeData();
try
{
url = System.Web.HttpUtility.UrlDecode(url);
responeData.data = SgManager.AI.IDCardClass.idcard(url);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
#endregion
}
}