huawei
6 天以前 e286264a833fe52862690ad06d72ad04df5c77dc
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
28
29
30
31
32
33
34
35
using Newtonsoft.Json;
 
namespace NewPdaSqlServer.Dto.Simple;
 
/// <summary>
///     ×Ӳ˵¥Ïî - Ê÷ÐνṹµÄ×Ó½Úµã
/// </summary>
public class ChildrenDto
{
    /// <summary>
    ///     ×Ӳ˵¥ID
    /// </summary>
    [JsonProperty("id")]
    public long Id { get; set; }
 
    /// <summary>
    ///     ×Ӳ˵¥Ãû³Æ
    /// </summary>
    [JsonProperty("title")]
    public string? Title { get; set; }
 
    /// <summary>
    ///     Ó¢Îıêʶ
    /// </summary>
    [JsonProperty("field")]
    public string? Field { get; set; }
 
    /// <summary>
    ///     Ìø×ªÁ´½Ó
    ///     Èç¹ûֵΪ"ÂÖ²¥"£¬Ôò×Ô¶¯Éú³Ébi_view.htmlÁ´½Ó
    ///     ·ñÔòʹÓÃÊý¾Ý¿âÖÐÅäÖõÄԭʼhref
    /// </summary>
    [JsonProperty("href")]
    public string? Href { get; set; }
}