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

65 lines
1.3 KiB
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.MAP
{
public class WX_USERPERCENT_Extend
{
[DisplayName("EID")]
[NotMapped]
public decimal EID { get; set; }
[DisplayName("组ID")]
[NotMapped]
public decimal? GID { get; set; }
[DisplayName("人员比例")]
[NotMapped]
public decimal? DIV_PERCENT { get; set; }
[DisplayName("组名")]
[NotMapped]
public string GNAME { get; set; }
[DisplayName("姓名")]
[NotMapped]
public string UNAME { get; set; }
[DisplayName("真实姓名")]
[NotMapped]
public string TRUENAME { get; set; }
public short ISDISMISS { get; set; }
}
public class WX_USERPERCENT_Extend2
{
[DisplayName("EID")]
[NotMapped]
public decimal EID { get; set; }
[DisplayName("UserId")]
[NotMapped]
public decimal UserId { get; set; }
[DisplayName("组ID")]
[NotMapped]
public decimal GID { get; set; }
[DisplayName("人员比例")]
[NotMapped]
public decimal DIV_PERCENT { get; set; }
[DisplayName("姓名")]
[NotMapped]
public string UNAME { get; set; }
}
}