123456789101112131415161718192021222324252627282930 |
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_friends")]
- public class Friends : Datory.Entity
- {
-
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
-
- [DataColumn]
- public int FriendsUserId { get; set; }
-
-
-
-
- [DataColumn]
- public int AddressBookGroupId { get; set; }
- }
- }
|