陈嘉乐
2021-03-16 e1ac4ab0e68024e6289e0b11756962d662749b04
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
using System;
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;
 
 
 
 
    }
}