123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using GxPress.EnumConst;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_addressee")]
- public class Addressee : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int SourceId { get; set; }
-
-
-
- [DataColumn]
- public int SourceType { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public string UserName { get; set; }
-
-
-
- [DataColumn]
- public bool IsRead { get; set; }
-
-
-
- [DataColumn]
- public NoticeTypeConst NoticeAddresseeType { get; set; }
-
-
-
- [DataColumn]
- public bool IsTop { get; set; }
-
-
-
- [DataColumn]
- public bool IsAdmin { get; set; }
-
-
-
- [DataColumn]
- public bool IsDelete { get; set; }
- }
- }
|