123456789101112131415161718192021 |
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_address_book_group_user")]
- public class AddressBookGroupUser : Datory.Entity
- {
-
-
-
- [DataColumn] public int UserId { get; set; }
-
-
-
- [DataColumn] public int AddressBookGroupId { get; set; }
- }
- }
|