using MC.ORM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model.other { [TableName("term"), PrimaryKey("id")] public class Term { public int id { get; set; } public string headline { get; set; } public string content { get; set; } public string title { get; set; } public string description { get; set; } public string keywords { get; set; } public string typename { get; set; } public DateTime createdatetime { get; set; } } }