TG.WXCRM.V4/Model/MAP/RES_SALESGROUP_DETAIL.cs

21 lines
466 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using WX.CRM.Model.Entity;
namespace WX.CRM.Model.MAP
{
[NotMapped]
public class RES_SALESGROUP_DETAIL_Extend : RES_SALESGROUP_DETAIL
{
[NotMapped]
/// <summary>
/// 工号
/// </summary>
public decimal EID { get; set; }
[NotMapped]
/// <summary>
/// 姓名
/// </summary>
public string UserName { get; set; }
}
}