wxr
2022-01-23 d9ec9be857367028edaeffb6092b141664a81c45
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
using System;
using Shared;
 
namespace HDL_ON.Entity
{
    /// <summary>
    /// 第三方集成品牌对象类
    /// </summary>
    public class IntegratedBrand
    {
        public IntegratedBrand()
        {
        }
        /// <summary>
        /// 品牌名称
        /// </summary>
        public string brandName;
        /// <summary>
        /// 品牌图标
        /// </summary>
        public string brandIcon;
        /// <summary>
        /// 品牌标识
        /// </summary>
        public string productBrand;
        /// <summary>
        /// 平台标识
        /// </summary>
        public string productPlatform;
    }
 
    /// <summary>
    /// 第三方设备信息
    /// </summary>
    public class IntegratedBrandDevice
    {
 
        /// <summary>
        /// 产品唯一标识
        /// </summary>
        public string productId;
 
        /// <summary>
        /// 产品名称
        /// </summary>
        public string productName;
        public string productNameEn;
 
        public string ProductShowName
        {
            get
            {
                if(Language.CurrentLanguage == "Chinese")
                {
                    return productName;
                }
                else
                {
                    return productNameEn;
                }
            }
        }
 
        /// <summary>
        /// 产品厂商
        /// </summary>
        public string productSupplier;
 
        /// <summary>
        /// 产品品牌(品牌标识)
        /// </summary>
        public string productBrand;
 
        /// <summary>
        /// 产品类型
        /// </summary>
        public string productType;
 
        /// <summary>
        /// 第二品类名
        /// </summary>
        public string categorySecondName;
 
        /// <summary>
        /// 第二品类code
        /// </summary>
        public string categorySecondCode;
 
        /// <summary>
        /// 第一品类code
        /// </summary>
        public string categoryFirstCode;
 
        /// <summary>
        /// 第一品类名称
        /// </summary>
        public string categoryFirstName;
        /// <summary>
        /// 产品型号
        /// </summary>
        public string productVersion;
 
        /// <summary>
        /// 产品平台(平台标识)
        /// </summary>
        public string productPlatform;
 
        /// <summary>
        /// 产品图片
        /// </summary>
        public string productPic;
 
        /// <summary>
        /// 功能类型Key
        /// </summary>
        public string spk;
 
        /// <summary>
        /// 设备绑定方式 WIFI、QRSCAN、ZIG_BEE、ETHERNET
        /// </summary>
        public string bindType;
 
        /// <summary>
        /// icon文件名称
        /// </summary>
        public string IconName
        {
            get
            {
                return spk.Replace(".", "");
            }
        }
    }
 
}