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 SqlSugar;
 
namespace NewPdaSqlServer.entity;
 
/// <summary>
///     ²Ëµ¥Î¬»¤±í
/// </summary>
[SugarTable("MES_SIMPLE")]
public class MesSimple
{
    /// <summary>
    ///     ×ÔÔöÁÐÖ÷¼ü
    /// </summary>
    [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
    public long Id { get; set; }
 
    /// <summary>
    ///     ÊÇ·ñΪ¸ù½Úµã (0±íʾΪ¸ù½Úµã)
    /// </summary>
    [SugarColumn(ColumnName = "is_top")]
    public int? IsTop { get; set; }
 
    /// <summary>
    ///     ¸¸½Úµãid
    /// </summary>
    [SugarColumn(ColumnName = "fid")]
    public long? Fid { get; set; }
 
    /// <summary>
    ///     Ãû³Æ
    /// </summary>
    [SugarColumn(ColumnName = "title")]
    public string? Title { get; set; }
 
    /// <summary>
    ///     Ó¢ÎÄÃû
    /// </summary>
    [SugarColumn(ColumnName = "field")]
    public string? Field { get; set; }
 
    /// <summary>
    ///     µØÖ·
    /// </summary>
    [SugarColumn(ColumnName = "href")]
    public string? Href { get; set; }
 
    /// <summary>
    ///     ½ÚµãÊÇ·ñ³õʼչ¿ª (0Ϊ²»Õ¹¿ª£¬1Ϊչ¿ª)
    /// </summary>
    [SugarColumn(ColumnName = "spread")]
    public int? Spread { get; set; }
 
    /// <summary>
    ///     ½ÚµãÊÇ·ñΪչʾ (0Ϊչʾ£¬1Ϊ²»Õ¹Ê¾)
    /// </summary>
    [SugarColumn(ColumnName = "disabled")]
    public int? Disabled { get; set; }
 
    /// <summary>
    ///     ÂÖ²¥Ê±¼ä(Ãë)
    /// </summary>
    [SugarColumn(ColumnName = "lbtime")]
    public int? Lbtime { get; set; }
}