From b8fa3c75a36784fb61d1ebc988710293826da521 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期五, 06 六月 2025 17:41:04 +0800 Subject: [PATCH] 1.其他出库优化 --- entity/MesSysPageview.cs | 81 ++++++++++++++++++++++++---------------- 1 files changed, 48 insertions(+), 33 deletions(-) diff --git a/entity/MesSysPageview.cs b/entity/MesSysPageview.cs index a56145d..2688515 100644 --- a/entity/MesSysPageview.cs +++ b/entity/MesSysPageview.cs @@ -1,35 +1,50 @@ -锘縰sing System; -using System.Collections.Generic; -using System.Linq; -using SqlSugar; -namespace NewPdaSqlServer.entity +锘縰sing SqlSugar; + +namespace NewPdaSqlServer.entity; + +/// <summary> +/// 椤甸潰閰嶇疆琛� +/// </summary> +[SugarTable("MES_SYS_PAGEVIEW")] +public class MesSysPageview { /// <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; } - } -} + /// 涓婚敭 + /// 榛樿鍊�: (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; } + + /// <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; } +} \ No newline at end of file -- Gitblit v1.9.3