ProductMapperCreateDto.cs 778 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using Abp.AutoMapper;
  3. using System.ComponentModel.DataAnnotations;
  4. using IwbZero.AppServiceBase;
  5. namespace ShwasherSys.ProductInfo.Dto
  6. {
  7. [AutoMapTo(typeof(ProductMapper))]
  8. public class ProductMapperCreateDto:IwbEntityDto<int>
  9. {
  10. /// <summary>
  11. /// 新产品编码
  12. /// </summary>
  13. public string ProductNo { get; set; }
  14. /// <summary>
  15. /// 旧产品编码
  16. /// </summary>
  17. public string PreProductNo { get; set; }
  18. /// <summary>
  19. /// 老产品是成品1/半成品2
  20. /// </summary>
  21. public int PreProductType { get; set; }
  22. /// <summary>
  23. /// 新产品是成品1/半成品2
  24. /// </summary>
  25. public int NewProductType { get; set; }
  26. }
  27. }