using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.QueryMap { public class ActivitySourceInfo { [DisplayName("客户ID")] [NotMapped] public string ResId { get; set; } [DisplayName("用户名")] [NotMapped] public string UserName { get; set; } [DisplayName("资源类型名称")] [NotMapped] public string TypeName { get; set; } [DisplayName("申请时间")] [NotMapped] public DateTime? ApplyTime { get; set; } [DisplayName("活动名称")] [NotMapped] public string ActivityName { get; set; } [DisplayName("数据类型")] [NotMapped] public string DataType { get; set; } [DisplayName("xml数据")] [NotMapped] public string ExtXml { get; set; } [DisplayName("扩展信息")] [NotMapped] public string JsonData { get; set; } [DisplayName("事业部")] [NotMapped] public decimal? deptid { get; set; } } }