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
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
using System;
using SqlSugar;
 
namespace NewPdaSqlServer.entity;
 
/// <summary>
///     ¿´°å²Ëµ¥ÅäÖñí (MES_SIMPLE)
/// </summary>
[SugarTable("MES_SIMPLE")]
public class MesSimple
{
    [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
    public long Id { get; set; }
 
    [SugarColumn(ColumnName = "parent_id", IsNullable = true)]
    public long? ParentId { get; set; }
 
    [SugarColumn(ColumnName = "node_level")]
    public int NodeLevel { get; set; }
 
    [SugarColumn(ColumnName = "node_type")]
    public int NodeType { get; set; }
 
    [SugarColumn(ColumnName = "code")]
    public string? Code { get; set; }
 
    [SugarColumn(ColumnName = "title")]
    public string? Title { get; set; }
 
    [SugarColumn(ColumnName = "url")]
    public string? Url { get; set; }
 
    [SugarColumn(ColumnName = "carousel_duration", IsNullable = true)]
    public int? CarouselDuration { get; set; }
 
    [SugarColumn(ColumnName = "is_expanded")]
    public bool IsExpanded { get; set; }
 
    [SugarColumn(ColumnName = "is_enabled")]
    public bool IsEnabled { get; set; }
 
    [SugarColumn(ColumnName = "sort_order")]
    public int SortOrder { get; set; }
 
    [SugarColumn(ColumnName = "is_deleted")]
    public bool IsDeleted { get; set; }
 
    [SugarColumn(ColumnName = "created_by")]
    public string? CreatedBy { get; set; }
 
    [SugarColumn(ColumnName = "created_at")]
    public DateTime CreatedAt { get; set; }
}