1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using Datory.Annotations;
- namespace GxPress.Entity.Note
- {
-
-
-
- [DataTable("tede_note")]
- public class Note : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Title { get; set; }
-
-
-
- [DataColumn]
- public string Content { get; set; }
-
-
-
- [DataColumn]
- public string HtmlContent { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int ReadCount { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsDelete { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsTopic { get; set; }
-
-
-
-
- [DataColumn]
- public int FolderId { get; set; }
- }
- }
|