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

41 lines
1.3 KiB
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
public partial class CACHE_RES_RESOURCE_COUNT
{
/// <summary>
/// RESID
/// </summary>
[DisplayName("客户ID")]
[NotMapped]
public string map_RESID { get { return this.RESID; } set { this.RESID = value; } }
/// <summary>
/// HASACTIVE
/// </summary>
[DisplayName("是否工单")]
[NotMapped]
public short? map_HASACTIVE { get { return this.HASACTIVE; } set { this.HASACTIVE = value; } }
/// <summary>
/// HASBOCE
/// </summary>
[DisplayName("开户")]
[NotMapped]
public short? map_HASBOCE { get { return this.HASBOCE; } set { this.HASBOCE = value; } }
/// <summary>
/// HASGJS
/// </summary>
[DisplayName("开户")]
[NotMapped]
public short? map_HASGJS { get { return this.HASGJS; } set { this.HASGJS = value; } }
/// <summary>
/// HASUSERNAME
/// </summary>
[DisplayName("注册软件否")]
[NotMapped]
public short? map_HASUSERNAME { get { return this.HASUSERNAME; } set { this.HASUSERNAME = value; } }
}
}