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
using Newtonsoft.Json;
using System;
using System.Collections.ObjectModel;
 
namespace PdmSwPlugin.Common.Entity
{
    [Serializable]
    public class PdmPart : NotifyBase
    {
        private string _id;
        [JsonProperty("id")]
        public string id
        {
            get => _id;
            set => RaiseAndSetIfChanged(ref _id, value);
        }
 
        private string _partNo;
        [JsonProperty("partNo")]
        public string partNo
        {
            get => _partNo;
            set => RaiseAndSetIfChanged(ref _partNo, value);
        }
 
        private string _partName;
        [JsonProperty("partName")]
        public string partName
        {
            get => _partName;
            set => RaiseAndSetIfChanged(ref _partName, value);
        }
 
        private string _partModel;
        [JsonProperty("partModel")]
        public string partModel
        {
            get => _partModel;
            set => RaiseAndSetIfChanged(ref _partModel, value);
        }
 
        private string _partBrandName;
        [JsonProperty("partBrandName")]
        public string partBrandName
        {
            get => _partBrandName;
            set => RaiseAndSetIfChanged(ref _partBrandName, value);
        }
 
        private string _partBussinesstype;
        [JsonProperty("partBussinesstype")]
        public string partBussinesstype
        {
            get => _partBussinesstype;
            set => RaiseAndSetIfChanged(ref _partBussinesstype, value);
        }
 
        private string _partBussinesstypeName;
        [JsonProperty("partBussinesstypeName")]
        public string partBussinesstypeName
        {
            get => _partBussinesstypeName;
            set => RaiseAndSetIfChanged(ref _partBussinesstypeName, value);
        }
 
        private string _drawingPath;
        [JsonProperty("drawingPath")]
        public string drawingPath
        {
            get => _drawingPath;
            set => RaiseAndSetIfChanged(ref _drawingPath, value);
        }
 
        private string _md5;
        [JsonProperty("md5")]
        public string md5
        {
            get => _md5;
            set => RaiseAndSetIfChanged(ref _md5, value);
        }
 
        private string _order;
        [JsonProperty("order")]
        public string order
        {
            get => _order;
            set => RaiseAndSetIfChanged(ref _order, value);
        }
 
        private string _column;
        [JsonProperty("column")]
        public string column
        {
            get => _column;
            set => RaiseAndSetIfChanged(ref _column, value);
        }
 
        private ObservableCollection<PartSpec> _specs;
 
        [JsonProperty("specs")]
        public ObservableCollection<PartSpec> specs
        {
            get { return _specs; }
            set => RaiseAndSetIfChanged(ref _specs, value);
        }
 
    }
}