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

31 lines
689 B
C#

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