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/Collection.cs | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/Admin.NET/FZCZTB.NET.MD/Collection.cs b/Admin.NET/FZCZTB.NET.MD/Collection.cs new file mode 100644 index 0000000..3eb8a0c --- /dev/null +++ b/Admin.NET/FZCZTB.NET.MD/Collection.cs @@ -0,0 +1,33 @@ +锘縰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_Collection")] + [IncreTable] + public partial class Collection : basemodelNoId + { + /// <summary> + /// ID锛屼富閿� + /// </summary> + [SugarColumn(IsPrimaryKey = true)] + public Guid Id { get; set; } + + /// <summary> + /// 鎷涙爣ID锛屽閿� + /// </summary> + [SugarColumn(IsPrimaryKey = true)] + public Guid TenderId { get; set; } + } + + +} -- Gitblit v1.9.1