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

57 lines
1.4 KiB
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
public partial class QH_COMMISSIONAPPLY
{
/// <summary>
/// 经纪人姓名
/// </summary>
[NotMapped]
public string userName { get; set; }
[NotMapped]
public decimal? userEid { get; set; }
[NotMapped]
public string groupName { get; set; }
[NotMapped]
public string checkUserName { get; set; }
[NotMapped]
public DateTime? activeTime { get; set; }
[NotMapped]
public string applyDate
{
get;
set;
}
[NotMapped]
public string statusChar
{
get
{
string tem = "";
switch ((int)this.STATUS)
{
case 1:
tem = "未审核";
break;
case 2:
tem = "已通过";
break;
case 3:
tem = "未通过";
break;
case 4:
tem = "已失效";
break;
}
return tem;
}
}
[NotMapped]
public string CategoryName { get; set; }
}
}