namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_CUSTOMERQW")]
public partial class RES_CUSTOMERQW
{
[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; }
[Key]
[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; }
}
}