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_TenderOrderBidding")]
|
[IncreTable]
|
public partial class TenderOrderBidding : basemodelNoId
|
{
|
/// <summary>
|
/// 投标ID,主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true)]
|
public Guid Id { get; set; }
|
|
/// <summary>
|
/// 招标ID
|
/// </summary>
|
[SugarColumn(ColumnDescription = "招标ID")]
|
public Guid TenderId { get; set; }
|
|
|
/// <summary>
|
/// 投标文件
|
/// </summary>
|
[SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "投标文件")]
|
public string Touboaowenjian { get; set; }
|
|
/// <summary>
|
/// 投标文件name
|
/// </summary>
|
[SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "投标文件Name")]
|
public string TouboaowenjianName { get; set; }
|
|
|
/// <summary>
|
/// 是否中标
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否中标")]
|
public bool? IsSelected { get; set; }
|
|
/// <summary>
|
/// 中标时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "中标时间")]
|
public DateTime? SelectedTime { get; set; }
|
|
|
/// <summary>
|
/// 是否支付
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否支付")]
|
public bool? IsTransfer { get; set; }
|
|
/// <summary>
|
/// 支付时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "支付时间")]
|
public DateTime? TransferTime { get; set; }
|
|
|
/// <summary>
|
/// 支付编号
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "支付编号")]
|
public string TransferNo { get; set; }
|
|
/// <summary>
|
///支付金额
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "支付金额")]
|
public decimal? Zhifujine { get; set; }
|
|
/// <summary>
|
/// 支付返回标号
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "支付返回标号")]
|
public string TradeNo { get; set; }
|
|
/// <summary>
|
/// 创建者CusExtendId
|
/// </summary>
|
[OwnerUser]
|
[SugarColumn(ColumnDescription = "创建者CusExtendId", IsOnlyIgnoreUpdate = true)]
|
public long? CusExtendId { get; set; }
|
|
|
|
|
/// <summary>
|
/// 是否支付代理费
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否支付代理费")]
|
public bool? IsDailiTransfer { get; set; }
|
|
/// <summary>
|
/// 代理费支付时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "代理费支付时间")]
|
public DateTime? DailiTransferTime { get; set; }
|
|
|
/// <summary>
|
/// 代理费支付编号
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "代理费支付编号")]
|
public string DailiTransferNo { get; set; }
|
|
/// <summary>
|
///代理支付金额
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "代理支付金额")]
|
public decimal? DailiZhifujine { get; set; }
|
|
/// <summary>
|
/// 代理支付返回标号
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "代理支付返回标号")]
|
public string DailiTradeNo { get; set; }
|
|
|
}
|
}
|