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
|
{
|
/// <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; }
|
}
|
|
|
}
|