using Newtonsoft.Json; namespace NewPdaSqlServer.Dto.Simple; /// /// BI视图DTO - 专门用于轮播页面展示 (对应 NodeType = 1) /// public class BiViewDto { [JsonProperty("id")] public long Id { get; set; } [JsonProperty("parentId")] public long? ParentId { get; set; } [JsonProperty("title")] public string? Title { get; set; } [JsonProperty("url")] public string? Url { get; set; } /// /// 轮播间隔(秒) /// [JsonProperty("duration")] public int? Duration { get; set; } }