DeleClientAddDto.cs 639 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.CRM
  7. {
  8. /// <summary>
  9. /// 签证客户添加
  10. /// </summary>
  11. public class DeleClientAddDto
  12. {
  13. }
  14. public class SetCrmUpdPassIdCardOCRDto
  15. {
  16. public int UserId { get; set; }
  17. public string ClientName { get; set; }
  18. public int Sex { get; set; }
  19. public string CerdNo { get; set; }
  20. public string CerdAddress { get; set; }
  21. public DateTime IssueDt { get; set; }
  22. public DateTime ExpiryDt { get; set; }
  23. }
  24. }