using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///推广系统推广关系 /// [SugarTable("Promotion_PromotionRelation")] public partial class Promotion_PromotionRelation { public Promotion_PromotionRelation(){ } /// /// Desc:推广员编号 /// Default: /// Nullable:False /// public Guid PopularizerId {get;set;} /// /// Desc:受邀人编号 /// Default: /// Nullable:False /// public Guid PyramiderId {get;set;} /// /// Desc:推广时间 /// Default: /// Nullable:False /// public DateTime PopularizeDate {get;set;} } }