using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///招标信息表 /// [SugarTable("pp_biddinginfo")] public partial class PpBiddinginfo { public PpBiddinginfo(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:项目名称 /// Default: /// Nullable:True /// public string ProjectName {get;set;} /// /// Desc:项目编号 /// Default: /// Nullable:True /// public string ProjectNum {get;set;} /// /// Desc:招标类型(对应字典中的值) /// Default: /// Nullable:True /// public string BiddingType {get;set;} /// /// Desc:招标金额 /// Default:0 /// Nullable:False /// public decimal BiddingAmount {get;set;} /// /// Desc:招标形式(对应字典中的值) /// Default: /// Nullable:True /// public string BiddingForm {get;set;} /// /// Desc:采购人 /// Default: /// Nullable:True /// public string ProcuringEntity {get;set;} /// /// Desc:报名截止时间 /// Default: /// Nullable:True /// public DateTime? RegistrationDeadline {get;set;} /// /// Desc:开标时间 /// Default: /// Nullable:True /// public DateTime? BidOpeningTime {get;set;} /// /// Desc:当前状态 /// Default: /// Nullable:True /// public string NowStatus {get;set;} /// /// Desc:中标金额 /// Default: /// Nullable:True /// public decimal? BidWinningAmount {get;set;} /// /// Desc:招标代理 /// Default: /// Nullable:True /// public string BidAgent {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// public string CreateUser {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// 中标企业id /// public string WinningCompanyId { get; set; } /// /// 招标企业id /// public string BiddingCompanyId { get; set; } /// /// 审核是否通过 /// public bool? IsReview { get;set;} } }