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; } /// /// 用户ID /// [DataColumn] public int UserId { get; set; } /// /// 父级ID /// [DataColumn] public int ParentId { get; set; } } }