huawei
4 天以前 63d047db30e03608479ab3d340e925bc3366357c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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; }
}