chr
2024-11-02 b5234c5ab1e9e6826b8d8fc1e95fa752aaa40b74
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);
        }
    }
}