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; } /// /// rfm标签名称 /// 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; } } }