using 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 { /// /// 投诉质疑结果 /// [SugarTable("FB_Collection")] [IncreTable] public partial class Collection : basemodelNoId { /// /// ID,主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 招标ID,外键 /// [SugarColumn(IsPrimaryKey = true)] public Guid TenderId { get; set; } } }