123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.TencentOCR
- {
-
-
-
- public class IDCardOCRView
- {
-
-
-
-
- public bool Status { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Sex { get; set; }
-
-
-
- public string Nation { get; set; }
-
-
-
- public string Birth { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string IdNum { get; set; }
-
-
-
- public string Authority { get; set; }
-
-
-
- public string ValidDate { get; set; }
- }
- public class IDCardOCRAndDownUrlView : IDCardOCRView
- {
-
-
-
- public string DownUrl { get; set; }
- }
- }
|