啊鑫
2024-11-14 3d571e02cdb908ff583549f6f512a9a91ca95132
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
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace NewPdaSqlServer.entity
{
    /// <summary>
    /// 页面配置表
    ///</summary>
    [SugarTable("MES_SYS_PAGEVIEW")]
    public class MesSysPageview
    {
        /// <summary>
        /// 主键 
        /// 默认值: (newid())
        ///</summary>
         [SugarColumn(ColumnName="guid" ,IsPrimaryKey = true   )]
         public Guid Guid { get; set; }
        /// <summary>
        /// 页面中文名 
        ///</summary>
         [SugarColumn(ColumnName="PAGE_VIEW"    )]
         public string PageView { get; set; }
        /// <summary>
        /// 页面路径 
        ///</summary>
         [SugarColumn(ColumnName="PATH"    )]
         public string Path { get; set; }
        /// <summary>
        /// 页面图标 
        ///</summary>
         [SugarColumn(ColumnName="ICOIMG"    )]
         public string Icoimg { get; set; }
    }
}