chr
2024-10-09 1f645778ae80a3a8801b8bb4d0fcf8feb244ad43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
using System.Collections.ObjectModel;
 
namespace PdmSwPlugin.Common.Entity.DrawAudit
{
    public class DrawAudit : NotifyBase
    {
        private string _id;
 
        public string id
        {
            get { return _id; }
            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
        {
            get { return _materialCode; }
            set => RaiseAndSetIfChanged(ref _materialCode, value);
        }
 
        private string _status;
 
        public string status
        {
            get { return _status; }
            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; }
        public string d2RelativePath { get; set; }
 
        private string _requestUser;
 
        public string requestUser
        {
            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;
 
        public string auditUser
        {
            get { return _auditUser; }
            set => RaiseAndSetIfChanged(ref _auditUser, value);
        }
 
        private string _taskId;
 
        public string taskId
        {
            get { return _taskId; }
            set => RaiseAndSetIfChanged(ref _taskId, value);
        }
 
        private bool? _pass;
 
        public bool? pass
        {
            get { return _pass; }
            set => RaiseAndSetIfChanged(ref _pass, value);
        }
 
        private string _comment;
 
        public string comment
        {
            get { return _comment; }
            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;
 
        public ObservableCollection<DrawAudit> children
        {
            get { return _children; }
            set => RaiseAndSetIfChanged(ref _children, value);
        }
 
        private bool _selected;
 
        public bool selected
        {
            get => _selected;
            set => RaiseAndSetIfChanged(ref _selected, value);
        }
 
        private int? _count;
 
        public int? count
        {
            get => _count;
            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);
        }
    }
}