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_ChangeOrder")]
|
[IncreTable]
|
public partial class ChangeOrder : basemodelNoId
|
{
|
/// <summary>
|
/// 变更ID,主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true)]
|
public Guid Id { get; set; }
|
|
/// <summary>
|
/// 招标ID,外键
|
/// </summary>
|
public Guid TenderId { get; set; }
|
|
|
/// <summary>
|
/// 项目名称
|
/// </summary>
|
[SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "项目名称")]
|
public string ProjectName { get; set; }
|
|
/// <summary>
|
/// 变更文件
|
/// </summary>
|
[SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "变更文件")]
|
public string Biangengwenjian { get; set; }
|
|
/// <summary>
|
/// 投标报名开始时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "投标报名开始时间")]
|
public DateTime? ToubiaoStartDate { get; set; }
|
|
|
/// <summary>
|
/// 投标报名结束时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "投标报名结束时间")]
|
public DateTime? ToubiaoEndDate { get; set; }
|
|
/// <summary>
|
/// 开标时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "开标时间")]
|
public DateTime? KaibiaoDate { get; set; }
|
|
/// <summary>
|
/// 开标地点
|
/// </summary>
|
[SugarColumn(Length = 250, IsNullable = true, ColumnDescription = "开标地点")]
|
public string Kaibiaodidian { get; set; }
|
}
|
}
|