using Datory.Annotations;
namespace GxPress.Entity.tede2.Media
{
///
/// 媒体标签
///
[DataTable("tede_media_lable")]
public class MediaLable : Datory.Entity
{
///
/// 媒体ID
///
///
[DataColumn]
public int MediaId { get; set; }
///
/// 标签ID
///
///
[DataColumn]
public int LableId { get; set; }
///
/// 标签名称
///
///
[DataColumn]
public string LableIdName { get; set; }
}
}