CustomerSendDto.cs 815 B

12345678910111213141516171819202122232425
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.CustomerInfo;
  5. namespace ShwasherSys.CustomerInfo.Dto
  6. {
  7. [AutoMapTo(typeof(CustomerSend)),AutoMapFrom(typeof(CustomerSend))]
  8. public class CustomerSendDto: EntityDto<int>
  9. {
  10. public string CustomerId { get; set; }
  11. public string CustomerSendName { get; set; }
  12. public string SendAdress { get; set; }
  13. public string LinkMan { get; set; }
  14. public string Telephone { get; set; }
  15. public string Zip { get; set; }
  16. public string Email { get; set; }
  17. public string Mobile { get; set; }
  18. public string Fax { get; set; }
  19. public DateTime? TimeCreated { get; set; }
  20. public DateTime? TimeLastMod { get; set; }
  21. public string UserIDLastMod { get; set; }
  22. public string IsLock { get; set; }
  23. }
  24. }