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; }
|
}
|