using System; using System.Collections.Generic; using System.Text; using Datory; using Datory.Annotations; namespace GxPress.Entity { /// /// 屏蔽文章类型 /// [DataTable("tede_blacklist_article")] public class BlacklistArticle:Datory.Entity { /// /// 用户Id /// [DataColumn] public int UserId { get; set; } /// /// 屏蔽类型(1 屏蔽他 2 不感兴趣) /// [DataColumn] public int BlacklistType { get; set; } /// /// 屏蔽值 /// [DataColumn] public string BlacklistValue { get; set; } } }