12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using GxPress.EnumConst;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_notice")]
- public class Notice : 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 string UserName { get; set; }
-
-
-
- [DataColumn]
- public NoticeTypeConst NoticeType { get; set; }
-
-
-
- [DataColumn]
- public bool IsDelete { get; set; }
-
-
-
- [DataColumn]
- public bool IsTop { get; set; }
-
-
-
- [DataColumn]
- public int SourceId { get; set; }
- }
- }
|