using DataEntity; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 涂布报告方法 /// public class MethodCoatingReport:IEntity { /// /// 是否是运行起点 /// public string isrun { get; set; } /// /// 是否被禁用状态 /// public string status { get; set; } /// /// 方法名称 /// public string name { get; set; } public string strIndex { get; set; } /// /// 方法标签 /// public string label { get; set; } private string _filePath; /// /// 报告文件路径 /// public string filePath { get { return _filePath; } set { _filePath = value; OnPropertyChanged(nameof(filePath)); } } private string _fileName; /// /// 报告文件名 /// public string fileName { get { return _fileName; } set { _fileName = value; OnPropertyChanged(nameof(fileName)); } } /// /// 报告文件名后缀 /// public string filePostfix { get; set; } /// /// 报告内容列名集合 /// public List reportColumns { get; set; } } }