1234567891011121314151617181920 |
- using MC.ORM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CP.Model.other
- {
- [TableName("SkillsContent"), PrimaryKey("skillsid")]
- public class SkillsContent
- {
- public int skillsid { get; set; }
- public string content { get; set; }
- public string headline { get; set; }
- public string author { get; set; }
- public DateTime updatetime { get; set; }
- }
- }
|