using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 通讯录用户
///
[DataTable("tede_address_book_group_user")]
public class AddressBookGroupUser : Datory.Entity
{
///
/// 用户ID
///
[DataColumn] public int UserId { get; set; }
///
/// 通讯录组ID
///
[DataColumn] public int AddressBookGroupId { get; set; }
}
}