| | |
| | | namespace NewPdaSqlServer.Dto.Simple; |
| | | |
| | | /// <summary> |
| | | /// BI视图DTO - 用于轮播页面的视图数据 |
| | | /// BI视图DTO - 专门用于轮播页面展示 (对应 NodeType = 1) |
| | | /// </summary> |
| | | public class BiViewDto |
| | | { |
| | | /// <summary> |
| | | /// BI视图主键ID |
| | | /// </summary> |
| | | [JsonProperty("id")] |
| | | public int Id { get; set; } |
| | | 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; } |
| | | |
| | | /// <summary> |
| | | /// 所属父菜单ID |
| | | /// 轮播间隔(秒) |
| | | /// </summary> |
| | | [JsonProperty("pid")] |
| | | public int? Pid { get; set; } |
| | | |
| | | /// <summary> |
| | | /// BI视图名称 |
| | | /// </summary> |
| | | [JsonProperty("name")] |
| | | public string? Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// BI看板的完整URL地址 |
| | | /// </summary> |
| | | [JsonProperty("href")] |
| | | public string? Href { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 轮播时间间隔(秒) |
| | | /// </summary> |
| | | [JsonProperty("lbtime")] |
| | | public int? Lbtime { get; set; } |
| | | [JsonProperty("duration")] |
| | | public int? Duration { get; set; } |
| | | } |