using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
public class BAS_USERGROUPCHANGELOG_Extend
{
///
/// 员工变动记录
///
[NotMapped]
public BAS_USERGROUPCHANGELOG ChangeLog { get; set; }
///
/// 员工姓名
///
[NotMapped]
public string UserName { get; set; }
///
/// 调入组名称
///
[NotMapped]
public string InGroupName { get; set; }
///
/// 调出组名称
///
[NotMapped]
public string OutGroupName { get; set; }
}
}