CustomerDefaultProductCreateDto.cs 730 B

1234567891011121314151617181920212223
  1. using System;
  2. using Abp.AutoMapper;
  3. using System.ComponentModel.DataAnnotations;
  4. using ShwasherSys.CustomerInfo;
  5. namespace ShwasherSys.CustomerInfo.Dto
  6. {
  7. [AutoMapTo(typeof(CustomerDefaultProduct))]
  8. public class CustomerDefaultProductCreateDto
  9. {
  10. [StringLength(CustomerDefaultProduct.CustomerIdMaxLength)]
  11. public string CustomerId { get; set; }
  12. public string ProductNo { get; set; }
  13. [StringLength(CustomerDefaultProduct.CustomerProductNameMaxLength)]
  14. public string CustomerProductName { get; set; }
  15. public int Sequence { get; set; }
  16. public DateTime? TimeLastMod { get; set; }
  17. public string PartNo { get; set; }
  18. public string ProductHsCode { get; set; }
  19. }
  20. }