huawei
3 天以前 63d047db30e03608479ab3d340e925bc3366357c
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
using Newtonsoft.Json;
using System;
 
namespace NewPdaSqlServer.Dto.Simple;
 
/// <summary>
///     ²Ëµ¥ÊµÌåDTO - ¶ÔӦеĠMES_SIMPLE ±í½á¹¹
/// </summary>
public class MesSimpleDto
{
    [JsonProperty("id")]
    public long Id { get; set; }
 
    /// <summary>
    ///     ¸¸½ÚµãID (NULLΪ¸ù½Úµã)
    /// </summary>
    [JsonProperty("parentId")]
    public long? ParentId { get; set; }
 
    /// <summary>
    ///     ½ÚµãÀàÐÍ: 0=Ŀ¼, 1=Ò³Ãæ/ÂÖ²¥
    /// </summary>
    [JsonProperty("nodeType")]
    public int NodeType { get; set; }
 
    /// <summary>
    ///     ²ã¼¶ (0-5)
    /// </summary>
    [JsonProperty("nodeLevel")]
    public int NodeLevel { get; set; }
 
    /// <summary>
    ///     Î¨Ò»ÒµÎñ±àÂë
    /// </summary>
    [JsonProperty("code")]
    public string? Code { get; set; }
 
    /// <summary>
    ///     ÏÔʾ±êÌâ
    /// </summary>
    [JsonProperty("title")]
    public string? Title { get; set; }
 
    /// <summary>
    ///     Ìø×ªµØÖ·
    /// </summary>
    [JsonProperty("url")]
    public string? Url { get; set; }
 
    /// <summary>
    ///     ÂÖ²¥Ê±³¤(Ãë)
    /// </summary>
    [JsonProperty("carouselDuration")]
    public int? CarouselDuration { get; set; }
 
    /// <summary>
    ///     ÊÇ·ñĬÈÏÕ¹¿ª
    /// </summary>
    [JsonProperty("isExpanded")]
    public bool IsExpanded { get; set; }
 
    /// <summary>
    ///     ÊÇ·ñÆôÓÃ
    /// </summary>
    [JsonProperty("isEnabled")]
    public bool IsEnabled { get; set; }
 
    /// <summary>
    ///     ÅÅÐò
    /// </summary>
    [JsonProperty("sortOrder")]
    public int SortOrder { get; set; }
}