JXMovies/CMS/JXCMS.CMS.Movie/Entity/ArticleEntity.cs

15 lines
322 B
C#
Raw Normal View History

2020-02-09 19:10:05 +08:00
using FreeSql;
using FreeSql.DataAnnotations;
namespace JXCMS.CMS.Entity
{
public class ArticleEntity : BaseEntity<ArticleEntity, int>
{
public string Title { get; set; }
public string Author { get; set; }
[Column(DbType = "text")]
public string Content { get; set; }
}
}