38 lines
969 B
C#
38 lines
969 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.QH_CUSTOMER_SALEUSER")]
|
|
public partial class QH_CUSTOMER_SALEUSER
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 资产账号
|
|
/// </summary>
|
|
[StringLength(50)]
|
|
public string USERACCOUNT { get; set; }
|
|
/// <summary>
|
|
/// 客服ID
|
|
/// </summary>
|
|
public decimal INNERUSERID { get; set; }
|
|
/// <summary>
|
|
/// 客服EID
|
|
/// </summary>
|
|
public decimal EID { get; set; }
|
|
/// <summary>
|
|
/// 客服组ID
|
|
/// </summary>
|
|
public decimal GID { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
|
|
#region 导出需要的字段
|
|
[NotMapped]
|
|
public string INNERUSERNAME { get; set; }
|
|
#endregion
|
|
}
|
|
}
|