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_TenderOrderBidding")] [IncreTable] public partial class TenderOrderBidding : basemodelNoId { /// /// 投标ID,主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 招标ID /// [SugarColumn(ColumnDescription = "招标ID")] public Guid TenderId { get; set; } /// /// 投标文件 /// [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "投标文件")] public string Touboaowenjian { get; set; } /// /// 是否中标 /// [SugarColumn(IsNullable = true, ColumnDescription = "是否中标")] public bool? IsSelected { get; set; } /// /// 中标时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "中标时间")] public DateTime? SelectedTime { get; set; } /// /// 是否支付 /// [SugarColumn(IsNullable = true, ColumnDescription = "是否支付")] public bool? IsTransfer { get; set; } /// /// 支付时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "支付时间")] public DateTime? TransferTime { get; set; } /// /// 支付编号 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "支付编号")] public string TransferNo { get; set; } /// ///支付金额 /// [SugarColumn(IsNullable = true, ColumnDescription = "支付金额")] public decimal? Zhifujine { get; set; } /// /// 支付返回标号 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "支付返回标号")] public string TradeNo { get; set; } } }