chr
2024-08-12 e9d7a5ef4c17e4804fb988dd193ff7d1fa36d52b
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
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 _materialCode;
 
        public string materialCode
        {
            get { return _materialCode; }
            set => RaiseAndSetIfChanged(ref _materialCode, value);
        }
 
        private string _status;
 
        public string status
        {
            get { return _status; }
            set { _status = 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 _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; }
 
        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);
        }
 
    }
}