1
啊鑫
2024-11-27 ca835dc991b53a63971d1f811c3b7de2793b7b8f
entity/MesSysPageview.cs
@@ -9,27 +9,45 @@
public class MesSysPageview
{
    /// <summary>
    ///     主键
    ///     默认值: (newid())
    /// </summary>
    /// 主键
    /// 默认值: (newid())
    ///</summary>
    [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
    public Guid Guid { get; set; }
    /// <summary>
    ///     页面中文名
    /// </summary>
    /// 页面中文名
    ///</summary>
    [SugarColumn(ColumnName = "PAGE_VIEW")]
    public string PageView { get; set; }
    /// <summary>
    ///     页面路径
    /// </summary>
    /// 页面路径
    ///</summary>
    [SugarColumn(ColumnName = "PATH")]
    public string Path { get; set; }
    /// <summary>
    ///     页面图标
    /// </summary>
    /// 页面图标
    ///</summary>
    [SugarColumn(ColumnName = "ICOIMG")]
    public string Icoimg { get; set; }
    /// <summary>
    ///
    ///</summary>
    [SugarColumn(ColumnName = "PAGE_GROUP")]
    public string PageGroup { get; set; }
    /// <summary>
    ///
    ///</summary>
    [SugarColumn(ColumnName = "PAGE_IDX")]
    public int? PageIdx { get; set; }
    /// <summary>
    ///
    ///</summary>
    [SugarColumn(ColumnName = "PAGE_STATUS")]
    public bool? PageStatus { get; set; }
}