using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Entity.Crm { [Table("RES_CUSTOMERQW")] public class RES_CUSTOMERQW { [Key] [StringLength(255)] public string RESID { get; set; } //[Required] [StringLength(255)] public string? APPID { get; set; } public DateTime? CTIME { get; set; } [StringLength(255)] public string? CUSTOMERFROM { get; set; } [StringLength(255)] public string? APPUSERID { get; set; } /// /// 加好友时间 /// public DateTime? CREATETIME { get; set; } /// /// 客服企微ID /// public string? HHUSERID { get; set; } /// /// 资源类型 /// public string? SCENE { get; set; } public string? SCENENAME { get; set; } /// /// 活动信息 /// public int? SCENETYPE { get; set; } public string? SCENETYPENAME { get; set; } } }