62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Serializable]
|
|
public partial class BAS_GROUPLEADER
|
|
{
|
|
[DisplayName("员工")]
|
|
[NotMapped]
|
|
public decimal map_INNERUSERID { get { return this.INNERUSERID; } set { this.INNERUSERID = value; } }
|
|
|
|
[DisplayName("销售组")]
|
|
[NotMapped]
|
|
public decimal map_INNERGROUPID { get { return this.INNERGROUPID; } set { this.INNERGROUPID = value; } }
|
|
|
|
[DisplayName("组长类型")]
|
|
[NotMapped]
|
|
public decimal? map_LEADERTYPE { get { return this.LEADERTYPE; } set { this.LEADERTYPE = value; } }
|
|
|
|
[DisplayName("创建时间")]
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } }
|
|
|
|
[DisplayName("创建人")]
|
|
[NotMapped]
|
|
public Nullable<decimal> map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } }
|
|
|
|
[DisplayName("修改时间")]
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> map_UTIME { get { return this.UTIME; } set { this.UTIME = value; } }
|
|
|
|
[DisplayName("修改人")]
|
|
[NotMapped]
|
|
public Nullable<decimal> map_UPDATEUSER { get { return this.UPDATEUSER; } set { this.UPDATEUSER = value; } }
|
|
|
|
#region 扩展列
|
|
[DisplayName("员工工号")]
|
|
[NotMapped]
|
|
public decimal map_EID { get { return this.EID; } set { this.EID = value; } }
|
|
|
|
[DisplayName("组名")]
|
|
[NotMapped]
|
|
public string map_gName { get { return this.gName; } set { this.gName = value; } }
|
|
|
|
[DisplayName("姓名")]
|
|
[NotMapped]
|
|
public string map_uName { get { return this.uName; } set { this.uName = value; } }
|
|
|
|
[NotMapped]
|
|
public decimal EID { get; set; }
|
|
[NotMapped]
|
|
public string gName { get; set; }
|
|
[NotMapped]
|
|
public string uName { get; set; }
|
|
[NotMapped]
|
|
public string map_DEPTID { get; set; }
|
|
#endregion
|
|
}
|
|
}
|