CustomerInvoiceAddressDto.cs 659 B

1234567891011121314151617181920
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.CustomerInfo.InvoiceAddress.Dto
  5. {
  6. [AutoMapTo(typeof(CustomerInvoiceAddress)),AutoMapFrom(typeof(CustomerInvoiceAddress))]
  7. public class CustomerInvoiceAddressDto: EntityDto<int>
  8. {
  9. public string CustomerId { get; set; }
  10. public string InvoiceAddressName { get; set; }
  11. public string InvoiceAddress { get; set; }
  12. public string LinkMan { get; set; }
  13. public string Telephone { get; set; }
  14. public string Zip { get; set; }
  15. public string Email { get; set; }
  16. public string Mobile { get; set; }
  17. public string Fax { get; set; }
  18. }
  19. }