PDADefectImageResult.cs 688 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Runtime.Serialization;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. namespace Dongke.IBOSS.PRD.WCF.DataModels
  6. {
  7. public class PDADefectImageResult
  8. {
  9. /// <summary>
  10. /// 缺陷产品ID
  11. /// </summary>
  12. public int? ProductionDefectID
  13. {
  14. get;
  15. set;
  16. }
  17. /// <summary>
  18. /// 缩略图
  19. /// </summary>
  20. public string Thumbnailpath
  21. {
  22. get;
  23. set;
  24. }
  25. /// <summary>
  26. /// 原图
  27. /// </summary>
  28. public string Imagepath
  29. {
  30. get;
  31. set;
  32. }
  33. }
  34. }