From 31a636e735a0addc56e4f4527f500b7aa0874eb5 Mon Sep 17 00:00:00 2001
From: chr <chr@mailcom>
Date: 星期五, 03 一月 2025 11:21:46 +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