50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
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; }
|
|
|
|
/// <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; }
|
|
}
|
|
} |