using System;
using System.Collections.Generic;
namespace OTSCommon.Model
{
[Serializable]
public class ResultFile
{
///
/// FileId
///
/// //全局对象,为了能够快速的获取到xray数据,而做为一个临时变量进行保存,使用前应该判断是否为空
private List list_OTSField = null;
public string FileId
{
get;
set;
}
///
/// FileName
///
public string anotherFileName
{
get;
set;
}
///
/// FileName
///
public string FileName_real
{
get;
set;
}
///
/// FilePath
///
public string FilePath
{
get;
set;
}
///
/// ResuitInfo
///
public Dictionary ResultInfo
{
get;
set;
}
public List List_OTSField { get => list_OTSField; set => list_OTSField = value; }
}
}