ExternalcitizensDto.cs 759 B

1234567891011121314151617181920212223242526272829303132333435
  1. using Hotline.Share.Requests;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Hotline.Share.Dtos.Order
  8. {
  9. public record QueryExternalcitizensRequest: PagedRequest
  10. {
  11. public string PhoneNum { get; set; }
  12. public string Name { get; set; }
  13. }
  14. public class ExternalcitizensRep
  15. {
  16. public string Id { get; set; }
  17. public string PhoneNum { get; set;}
  18. public string Name { get; set; }
  19. public DateTime CreationTime { get; set; }
  20. }
  21. public class ModifyExternalcitizensDto
  22. {
  23. public string Id { get; set; }
  24. public string PhoneNum { get; set; }
  25. public string Name { get; set; }
  26. }
  27. }