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