using FreeSql.DataAnnotations;
namespace BBWYB.Server.Model.Db.SpuOptimization
{
[Table(Name = "spuoptimizationpurchasercompetitivetendertask", DisableSyncStructure = true)]
public partial class SpuOptimizationPurchaserCompetitiveTenderTask
{
[Column(IsPrimary = true)]
public long Id { get; set; }
///
/// 议价组Id
///
[Column(StringLength = 50)]
public string BargainTeamId { get; set; }
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
[Column(DbType = "datetime")]
public DateTime? UpdateTime { get; set; }
///
/// 是否更新报价
///
public bool? IsUpdateQuotedPrice { get; set; } = false;
///
/// 采购商Id
///
[Column(StringLength = 50)]
public string PurchaserId { get; set; }
///
/// 采购方案分组Id
///
[Column(DbType = "bigint")]
public long? SchemeGroupId { get; set; }
///
/// 采购方案Id
///
[Column(DbType = "bigint")]
public long? SchemeId { get; set; }
[Column(StringLength = 50)]
public string SkuId { get; set; }
///
/// Spu优化任务Id
///
[Column(DbType = "bigint")]
public long? SpuOptimizationTaskId { get; set; }
}
}