12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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; }
- }
- }
|