管道基础大数据平台系统开发-【CS】-ExportMap
OK
13693261870
2024-09-27 566e0d21293a5fe6423fd7a16541bce00eeb2e38
DataLoader/Model/ViewData.cs
@@ -11,15 +11,13 @@
    {
        public event PropertyChangedEventHandler PropertyChanged;
        private int _id;
        private string _filePath;
        private string _status;
        public string Ext { set; get; }
        public ViewData()
        {
        }
        private int _id;
        public int ID
        {
@@ -37,6 +35,23 @@
            }
        }
        private bool _checked;
        public bool Checked
        {
            set
            {
                if (_checked != value)
                {
                    _checked = value;
                    ChangProperty("Checked");
                }
            }
            get { return _checked; }
        }
        private string _filePath;
        public string FilePath
        {
            set
@@ -52,6 +67,26 @@
                return _filePath;
            }
        }
        private string _sizes;
        public string Sizes
        {
            set
            {
                if (_sizes != value)
                {
                    _sizes = value;
                    ChangProperty("Sizes");
                }
            }
            get
            {
                return _sizes;
            }
        }
        private string _status;
        public string Status
        {
@@ -76,5 +111,7 @@
                PropertyChanged(this, new PropertyChangedEventArgs(propName));
            }
        }
        public SysMeta Meta { set; get; }
    }
}