TG.WXCRM.V4/Model/Entity/RES_CUSTOMER_RFM_LIST.cs

36 lines
760 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_CUSTOMER_RFM_LIST")]
public class RES_CUSTOMER_RFM_LIST
{
[Key]
[Column(Order = 0)]
public string APPID { get; set; }
[Key]
[Column(Order = 1)]
public string SOFTUSER { get; set; }
public string RESID { get; set; }
/// <summary>
/// rfm标签名称
/// </summary>
public string LABELNAME { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? UTIME { get; set; }
public decimal PKID { get; set; }
public decimal WEIGHT { get; set; }
}
}