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 | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs b/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs index 52fb104..7d21d4a 100644 --- a/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs +++ b/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs @@ -12,6 +12,14 @@ set { _id = value; } } + private string _orderId; + + public string orderId + { + get => _orderId; + set => RaiseAndSetIfChanged(ref _orderId, value); + } + private string _orderCode; public string orderCode @@ -37,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; } @@ -48,6 +64,14 @@ { get { return _requestUser; } set => RaiseAndSetIfChanged(ref _requestUser, value); + } + + private string _requestUserId; + + public string requestUserId + { + get { return _requestUserId; } + set => RaiseAndSetIfChanged(ref _requestUserId, value); } private string _auditUser; @@ -91,6 +115,7 @@ } public byte[] commentBlob { get; set; } + public byte[] base64Data { get; set; } private ObservableCollection<DrawAudit> _children; @@ -143,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