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