using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { /// /// 售后归属表 /// [Table("UPDEV.WX_AFTERSALES")] public class WX_AFTERSALES { [Key] public decimal PKID { get; set; } public string RESID { get; set; } public decimal INNERUSERID { get; set; } public DateTime CTIME { get; set; } } }