namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class Msg_UserContent { [Key] public long UserContent_Id { get; set; } [StringLength(50)] public string ClassName { get; set; } public long? MainID { get; set; } public long? DetailID { get; set; } public long? BaseInfo_Id { get; set; } public int? User_Id { get; set; } [StringLength(50)] public string UserTrueName { get; set; } public string BaseInfoContent { get; set; } [StringLength(50)] public string BaseInfoType { get; set; } [StringLength(50)] public string BaseInfoName { get; set; } [StringLength(3500)] public string Url { get; set; } public byte? IsHandle { get; set; } public byte? IsRead { get; set; } public string Results { get; set; } public byte? Enable { get; set; } public string Remark { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public string ExpandFields { get; set; } public virtual Msg_BaseInfo Msg_BaseInfo { get; set; } } }