crm.core/code/Crm.Core.Entity/Crm/RES_CUSTOMERQW.cs

49 lines
1.1 KiB
C#

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; }
/// <summary>
/// 加好友时间
/// </summary>
public DateTime? CREATETIME { get; set; }
/// <summary>
/// 客服企微ID
/// </summary>
public string? HHUSERID { get; set; }
/// <summary>
/// 资源类型
/// </summary>
public string? SCENE { get; set; }
public string? SCENENAME { get; set; }
/// <summary>
/// 活动信息
/// </summary>
public int? SCENETYPE { get; set; }
public string? SCENETYPENAME { get; set; }
}
}