CustomerDefaultProductDto.cs 813 B

12345678910111213141516171819202122232425262728
  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(CustomerDefaultProduct)),AutoMapFrom(typeof(CustomerDefaultProduct))]
  8. public class CustomerDefaultProductDto: EntityDto<int>
  9. {
  10. public string CustomerId { get; set; }
  11. public string ProductNo { get; set; }
  12. public string ProductName { get; set; }
  13. public string CustomerProductName { get; set; }
  14. public int Sequence { get; set; }
  15. public DateTime? TimeLastMod { get; set; }
  16. public string PartNo { get; set; }
  17. public string Model { get; set; }
  18. public string Rigidity { get; set; }
  19. public string SurfaceColor { get; set; }
  20. public string Material { get; set; }
  21. }
  22. }