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