using Newtonsoft.Json;
|
|
namespace NewPdaSqlServer.Dto.Simple;
|
|
/// <summary>
|
/// BI视图DTO - 专门用于轮播页面展示 (对应 NodeType = 1)
|
/// </summary>
|
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; }
|
|
/// <summary>
|
/// 轮播间隔(秒)
|
/// </summary>
|
[JsonProperty("duration")]
|
public int? Duration { get; set; }
|
}
|