gxc
2020-02-28 66a9965c44ecc32a6696abca876ab9d1cd091584
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
using System;
using System.Collections.Generic;
 
namespace Shared.Common.ResponseEntity
{
    /// <summary>
    /// 固件
    /// </summary>
    [Serializable]
    public class FirmwareManaRes
    {
        public string ResponseVersion;
        public string StateCode;
        public string ErrorInfo;
        public List<FirmwareManaObj> ResponseData = new List<FirmwareManaObj>{};
    }
    [Serializable]
    public class FirmwareManaObj
    {
        /// <summary>
        /// apk名称
        /// </summary>
        /// <value>The name.</value>
        public string Name { get; set; }
        /// <summary>
        /// apk版本
        /// </summary>
        /// <value>The firmware version.</value>
        public string FirmwareVersion { get; set; }
        /// <summary>
        /// 备注
        /// </summary>
        /// <value>The remarks.</value>
        public string Remarks { get; set; }
        /// <summary>
        /// 固件分布式唯一,也是下载时的[下载固件的唯一标识]
        /// </summary>
        /// <value>The distributed mark.</value>
        public string DistributedMark { get; set; }
        /// <summary>
        /// 主键
        /// </summary>
        /// <value>The identifier.</value>
        public string Id { get; set; }
        /// <summary>
        /// 创建时间
        /// </summary>
        /// <value>The created on UTC.</value>
        public string CreatedOnUtc { get; set; }
    }
}