using System.Runtime.Serialization;
using System.Collections;
using System.Collections.Generic;
using System.IO;
namespace Dongke.IBOSS.PRD.WCF.DataModels
{
public class PDADefectImageResult
{
///
/// 缺陷产品ID
///
public int? ProductionDefectID
{
get;
set;
}
///
/// 缩略图
///
public string Thumbnailpath
{
get;
set;
}
///
/// 原图
///
public string Imagepath
{
get;
set;
}
}
}