ReplaceProductDto.cs 720 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.ProductInfo.Dto
  7. {
  8. public class ReplaceProductDto
  9. {
  10. public string ProductNo { get; set; }
  11. public List<PreReplaceProductDto> PreReplaceProducts { get; set; }
  12. }
  13. public class PreReplaceProductDto
  14. {
  15. public string ProductType { get; set; }
  16. public string ReplaceProductNo { get; set; }
  17. }
  18. public class ReturnReplaceResultDto
  19. {
  20. public string ProductNo { get; set; }
  21. public string RetCode { get; set; }
  22. public string ErrorInfo { get; set; }
  23. public bool IsSuccess { get; set; }
  24. }
  25. }