using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///招标公告信息表 /// [SugarTable("pp_announcement")] public partial class PpAnnouncement { public PpAnnouncement(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:公告标题 /// Default: /// Nullable:True /// public string Title {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:公告内容 /// Default: /// Nullable:True /// public string Content {get;set;} /// /// Desc:类型(0招标公告、1变更公告、2废标公告、3中标公告) /// Default: /// Nullable:False /// public short Type {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// public string CreateUser {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:招标信息id /// Default: /// Nullable:True /// public string BidingInfoId { get;set;} /// /// Desc:附件 /// Default: /// Nullable:True /// public string Files { get; set; } /// /// 审核是否通过 /// public bool IsReview { get; set; } } }