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; } /// /// 资产账号 /// [StringLength(50)] public string USERACCOUNT { get; set; } /// /// 客服ID /// public decimal INNERUSERID { get; set; } /// /// 客服EID /// public decimal EID { get; set; } /// /// 客服组ID /// public decimal GID { get; set; } public DateTime CTIME { get; set; } #region 导出需要的字段 [NotMapped] public string INNERUSERNAME { get; set; } #endregion } }