using Datory.Annotations;
namespace GxPress.Entity.SystemLabel
{
///
/// 用户系统标签管理
///
[DataTable("tede_system_label_user")]
public class SystemLableUser : Datory.Entity
{
///
/// 用户ID
///
///
[DataColumn]
public int UserId { get; set; }
///
/// 标签ID
///
///
[DataColumn]
public int SystemLableId { get; set; }
///
/// 是否置顶
///
///
[DataColumn]
public bool IsTop { get; set; }
}
}