日期:2014-05-17 浏览次数:20548 次
public class News
{
public int Id { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public DateTime PublishDate { get; set; }
public DateTime UpdateDate { get; set; }
public DateTime CreateDate { get; set; }
public bool IsActived { get; set; }
public bool IsDeleted { get; set; }
public NewsCategory Category { get; set; }
public News()
{
CreateDate = DateTime.Now;
}
}
public class NewsCategory
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime CreateDate { get; set; }
public bool IsDeleted { get; set; }
public NewsCategory()
{
CreateDate = DateTime.Now;
}
}