From b5234c5ab1e9e6826b8d8fc1e95fa752aaa40b74 Mon Sep 17 00:00:00 2001
From: chr <chr@mailcom>
Date: 星期六, 02 十一月 2024 10:56:50 +0800
Subject: [PATCH] 优化程序

---
 PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs b/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs
index 304711e..7d21d4a 100644
--- a/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs
+++ b/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs
@@ -45,6 +45,14 @@
             set { _status = value; }
         }
 
+        private string _statusArr;
+
+        public string statusArr
+        {
+            get { return _statusArr; }
+            set { _statusArr = value; }
+        }
+
         public string d3Md5 { get; set; }
         public string d3RelativePath { get; set; }
         public string d2Md5 { get; set; }
@@ -107,6 +115,7 @@
         }
 
         public byte[] commentBlob { get; set; }
+        public byte[] base64Data { get; set; }
 
         private ObservableCollection<DrawAudit> _children;
 
@@ -159,5 +168,12 @@
             get => _mass;
             set => RaiseAndSetIfChanged(ref _mass, value);
         }
+
+        private bool _isOpening = false;
+        public bool IsOpening
+        {
+            get => _isOpening;
+            set => RaiseAndSetIfChanged(ref _isOpening, value);
+        }
     }
 }

--
Gitblit v1.9.1