using Newtonsoft.Json;
namespace NewPdaSqlServer.Dto.Simple;
///
/// BI视图DTO - 用于轮播页面的视图数据
///
public class BiViewDto
{
///
/// BI视图主键ID
///
[JsonProperty("id")]
public int Id { get; set; }
///
/// 所属父菜单ID
///
[JsonProperty("pid")]
public int? Pid { get; set; }
///
/// BI视图名称
///
[JsonProperty("name")]
public string? Name { get; set; }
///
/// BI看板的完整URL地址
///
[JsonProperty("href")]
public string? Href { get; set; }
///
/// 轮播时间间隔(秒)
///
[JsonProperty("lbtime")]
public int? Lbtime { get; set; }
}