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 | 76 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 76 insertions(+), 0 deletions(-) diff --git a/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs b/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs index 534f660..7d21d4a 100644 --- a/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs +++ b/PdmSwPlugin.Common/Entity/DrawAudit/DrawAudit.cs @@ -12,6 +12,23 @@ set { _id = value; } } + private string _orderId; + + public string orderId + { + get => _orderId; + set => RaiseAndSetIfChanged(ref _orderId, value); + } + + private string _orderCode; + + public string orderCode + { + get => _orderCode; + set => RaiseAndSetIfChanged(ref _orderCode, value); + } + + private string _materialCode; public string materialCode @@ -28,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; } @@ -39,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; @@ -73,7 +106,16 @@ set => RaiseAndSetIfChanged(ref _comment, value); } + private string _updateTime; + + public string updateTime + { + get { return _updateTime; } + set => RaiseAndSetIfChanged(ref _updateTime, value); + } + public byte[] commentBlob { get; set; } + public byte[] base64Data { get; set; } private ObservableCollection<DrawAudit> _children; @@ -99,5 +141,39 @@ set => RaiseAndSetIfChanged(ref _count, value); } + private string _fileName; + public string fileName + { + get => _fileName; + set => RaiseAndSetIfChanged(ref _fileName, value); + } + + private double? _volume; + public double? volume + { + get => _volume; + set => RaiseAndSetIfChanged(ref _volume, value); + } + + private double? _surfaceArea; + public double? surfaceArea + { + get => _surfaceArea; + set => RaiseAndSetIfChanged(ref _surfaceArea, value); + } + + private double? _mass; + public double? mass + { + 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