chr
2024-08-07 22beee93f14d042aa184148c53efb79e23416526
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
using System.Collections.ObjectModel;
 
namespace PdmSwPlugin.Common.Entity
{
    public class PartSpec : NotifyBase
    {
        private string _id;
 
        public string id
        {
            get { return _id; }
            set { _id = value; }
        }
 
        private string _businesstypeId;
 
        public string businesstypeId
        {
            get { return _businesstypeId; }
            set { _businesstypeId = value; }
        }
 
 
        private string _name;
 
        public string name
        {
            get { return _name; }
            set { _name = value; }
        }
 
        private string _value;
        public string value
        {
            get { return _value; }
            set => RaiseAndSetIfChanged(ref _value, value);
        }
 
        private string _unit;
 
        public string unit
        {
            get { return _unit; }
            set { _unit = value; }
        }
 
        public string _type;
        public string type
        {
            get => _type;
            set { _type = value; }
        }
 
        private string _json;
        public string json
        {
            get { return _json; }
            set { _json = value; }
        }
 
        private ObservableCollection<string> _valueList;
        public ObservableCollection<string> valueList
        {
            get => _valueList;
            set => RaiseAndSetIfChanged(ref _valueList, value);
        }
 
    }
}