using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; using DataEntity; namespace XImagingXhandler.XDAL { /// /// 文件导入变量参数属性 /// public class MethodVariableImport:IEntity { public string isrun { get; set; } = ""; public string status { get; set; } = "可用"; public string name { get; set; } = ""; public string label { get; set; }= ""; public string strIndex { get; set; } public string filePath { get; set; } = ""; public DataTable transferDataTable { get; set; } = null; } }