From 2d8739b04f86ab5e73ec7b0d3152e702a90a450b Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期一, 14 七月 2025 16:34:49 +0800 Subject: [PATCH] 修改用户扩展资料 --- Admin.NET/FZCZTB.NET.MD/Neirongfabu.cs | 84 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 84 insertions(+), 0 deletions(-) diff --git a/Admin.NET/FZCZTB.NET.MD/Neirongfabu.cs b/Admin.NET/FZCZTB.NET.MD/Neirongfabu.cs new file mode 100644 index 0000000..1c7c785 --- /dev/null +++ b/Admin.NET/FZCZTB.NET.MD/Neirongfabu.cs @@ -0,0 +1,84 @@ +锘縰sing Admin.NET.Core; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FZCZTB.NET.MD +{ + /// <summary> + /// 鎶曡瘔璐ㄧ枒缁撴灉 + /// </summary> + [SugarTable("FB_Neirongfabu")] + [IncreTable] + public partial class Neirongfabu : basemodelNoId + { + /// <summary> + /// ID锛屼富閿� + /// </summary> + [SugarColumn(IsPrimaryKey = true)] + public Guid Id { get; set; } + + + /// <summary> + /// 鍐呭绫诲瀷 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鍐呭绫诲瀷")] + public int? Leirongneixing { get; set; } + + + + /// <summary> + /// 鏄惁鍙戝竷 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鏄惁鍙戝竷")] + public bool? IsFabu { get; set; } + + /// <summary> + /// 鏄惁棣栭〉鏄剧ず + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鏄惁棣栭〉鏄剧ず")] + public bool? IsShouyexianshi { get; set; } + + /// <summary> + /// 鍐呭鏍囬 + /// </summary> + [SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "鍐呭鏍囬")] + public string NeirongTittle { get; set; } + + /// <summary> + /// 灏侀潰鍥剧墖 + /// </summary> + [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "灏侀潰鍥剧墖")] + public string Fengmiantupian { get; set; } + + + /// <summary> + /// 鎺掑簭 瓒婂皬瓒婇潬鍓� + /// </summary> + [SugarColumn( IsNullable = true, ColumnDescription = "鎺掑簭 瓒婂皬瓒婇潬鍓�")] + public int? Sort { get; set; } + + /// <summary> + /// 鍙戝竷鏃堕棿 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鍙戝竷鏃堕棿")] + public DateTime? FabuDate { get; set; } + + + /// <summary> + /// 鍐呭鎽樿 + /// </summary> + [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "鍐呭鎽樿")] + public string NeirongZhaiyao { get; set; } + + /// <summary> + /// 鍐呭鎻忚堪 + /// </summary> + [SugarColumn(ColumnDescription = "鍐呭鎻忚堪", ColumnDataType = StaticConfig.CodeFirst_BigString)] + public string NeirongMiaoshu { get; set; } + } +} -- Gitblit v1.9.1