1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_address_book_group")]
- public class AddressBookGroup : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string GroupName { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int ParentId { get; set; }
-
-
-
-
- [DataColumn]
- public int Sort { get; set; }
- }
- }
|