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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using Newtonsoft.Json;
 
namespace NewPdaSqlServer.Dto.Simple;
 
/// <summary>
///     ²Ëµ¥ÊµÌåDTO - ÓÃÓÚÁбíչʾ
///     ÓëJava°æ±¾MesSimplesimple×Ö¶ÎÍêȫһÖÂ
/// </summary>
public class MesSimpleDto
{
    /// <summary>
    ///     ×ÔÔöÖ÷¼üID
    /// </summary>
    [JsonProperty("id")]
    public long Id { get; set; }
 
    /// <summary>
    ///     ÊÇ·ñΪ¸ù½Úµã (0±íʾΪ¸ù½Úµã)
    /// </summary>
    [JsonProperty("isTop")]
    public int? IsTop { get; set; }
 
    /// <summary>
    ///     ¸¸½Úµãid
    /// </summary>
    [JsonProperty("fid")]
    public long? Fid { get; set; }
 
    /// <summary>
    ///     Ãû³Æ
    /// </summary>
    [JsonProperty("title")]
    public string? Title { get; set; }
 
    /// <summary>
    ///     Ó¢ÎÄÃû
    /// </summary>
    [JsonProperty("field")]
    public string? Field { get; set; }
 
    /// <summary>
    ///     µØÖ·
    /// </summary>
    [JsonProperty("href")]
    public string? Href { get; set; }
 
    /// <summary>
    ///     ½ÚµãÊÇ·ñ³õʼչ¿ª (0Ϊ²»Õ¹¿ª£¬1Ϊչ¿ª)
    /// </summary>
    [JsonProperty("spread")]
    public int? Spread { get; set; }
 
    /// <summary>
    ///     ½ÚµãÊÇ·ñΪչʾ (0Ϊչʾ£¬1Ϊ²»Õ¹Ê¾)
    /// </summary>
    [JsonProperty("disabled")]
    public int? Disabled { get; set; }
 
    /// <summary>
    ///     ÂÖ²¥Ê±¼ä(Ãë)
    /// </summary>
    [JsonProperty("lbtime")]
    public int? Lbtime { get; set; }
}