34 lines
810 B
C#
34 lines
810 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class BAS_INNERUSERROLE_Extend
|
|
{
|
|
/// <summary>
|
|
/// 员工ID
|
|
/// </summary>
|
|
[NotMapped]
|
|
public decimal PKID { get; set; }
|
|
/// <summary>
|
|
/// 员工工号
|
|
/// </summary>
|
|
[NotMapped]
|
|
public decimal EID { get; set; }
|
|
/// <summary>
|
|
/// 员工名称
|
|
/// </summary>
|
|
[NotMapped]
|
|
public string UNAME { get; set; }
|
|
/// <summary>
|
|
/// 角色名称
|
|
/// </summary>
|
|
[NotMapped]
|
|
public string ROLESNAMES { get; set; }
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
[NotMapped]
|
|
public string ROLEIDS { get; set; }
|
|
}
|
|
}
|