using System; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.QueryMap { public class CallRecordModel { [NotMapped] public string groupname { get; set; } [NotMapped] public string usereid { get; set; } [NotMapped] public string stime { get; set; } [NotMapped] public string etime { get; set; } [NotMapped] public string maxLength { get; set; } [NotMapped] public string minLength { get; set; } [NotMapped] public string customerid { get; set; } [NotMapped] public string recordid { get; set; } [NotMapped] public string calltype { get; set; } [NotMapped] public int pageIndex { get; set; } [NotMapped] public int pageSize { get; set; } } public class CallRecordModelHis { [NotMapped] public string recordid { get; set; } [NotMapped] public string customerid { get; set; } } public class getCallRecord { [NotMapped] public Nullable RECORDID { get; set; } [NotMapped] public string RESID { get; set; } [NotMapped] public string SERVERID { get; set; } [NotMapped] public string FILENAME { get; set; } [NotMapped] public string SERVICENUMBER { get; set; } [NotMapped] public string TELNUMBERLAST4 { get; set; } [NotMapped] public Nullable TIMELENGTH { get; set; } [NotMapped] public Nullable CALLTYPE { get; set; } [NotMapped] public Nullable SALESEID { get; set; } [NotMapped] public string UNAME { get; set; } [NotMapped] public Nullable TIMESTART { get; set; } [NotMapped] public decimal nrow { get; set; } } }