123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using Datory.Annotations;
- namespace GxPress.Entity.Topic
- {
-
-
-
- [DataTable("tede_topic")]
- public class Topic : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Title { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public string Content { get; set; }
-
-
-
- [DataColumn]
- public string HtmlContent { get; set; }
-
-
-
- [DataColumn]
- public int ReadCount { get; set; }
-
-
-
- [DataColumn]
- public string AdmitPhone { get; set; }
-
-
-
- [DataColumn]
- public int GroupId { get; set; }
-
-
-
-
- [DataColumn]
- public int FolderId { get; set; }
- }
- }
|