CustomerDefaultProductUpdateDto.cs 796 B

12345678910111213141516171819202122232425
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using System.ComponentModel.DataAnnotations;
  5. using ShwasherSys.CustomerInfo;
  6. namespace ShwasherSys.CustomerInfo.Dto
  7. {
  8. [AutoMapTo(typeof(CustomerDefaultProduct))]
  9. public class CustomerDefaultProductUpdateDto: EntityDto<int>
  10. {
  11. [StringLength(CustomerDefaultProduct.CustomerIdMaxLength)]
  12. public string CustomerId { get; set; }
  13. [StringLength(CustomerDefaultProduct.ProductNoMaxLength)]
  14. public string ProductNo { get; set; }
  15. [StringLength(CustomerDefaultProduct.CustomerProductNameMaxLength)]
  16. public string CustomerProductName { get; set; }
  17. public int Sequence { get; set; }
  18. public string PartNo { get; set; }
  19. public string ProductHsCode { get; set; }
  20. }
  21. }