using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.RES_CUSTOMER_SALES")] public class RES_CUSTOMER_SALES { [Key] public decimal PKID { get; set; } public string RESID { get; set; } public decimal EID { get; set; } public DateTime CTIME { get; set; } } }