123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.CRM
- {
-
-
-
- public class DeleClientAddDto
- {
- }
- public class SetCrmUpdPassIdCardOCRDto
- {
- public int UserId { get; set; }
- public string ClientName { get; set; }
- public int Sex { get; set; }
- public string CerdNo { get; set; }
- public string CerdAddress { get; set; }
- public DateTime IssueDt { get; set; }
- public DateTime ExpiryDt { get; set; }
- }
- }
|