68 lines
1.9 KiB
C#
68 lines
1.9 KiB
C#
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<decimal> 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<decimal> TIMELENGTH { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> CALLTYPE { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> SALESEID { get; set; }
|
|
[NotMapped]
|
|
public string UNAME { get; set; }
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> TIMESTART { get; set; }
|
|
[NotMapped]
|
|
public decimal nrow { get; set; }
|
|
}
|
|
}
|