68 lines
1.9 KiB
C#
68 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
public class WD_CallReportModel
|
|
{
|
|
[DisplayName("工号")]
|
|
[NotMapped]
|
|
public decimal SALESEID { get; set; }
|
|
[DisplayName("姓名")]
|
|
[NotMapped]
|
|
public string UNAME { get; set; }
|
|
[DisplayName("组别")]
|
|
[NotMapped]
|
|
public string Groupname { get; set; }
|
|
[DisplayName("")]
|
|
[NotMapped]
|
|
public decimal TOTAL_COUT { get; set; }
|
|
[DisplayName("外呼号码数")]
|
|
[NotMapped]
|
|
public decimal TOTAL_COUNT_MOBILE { get; set; }
|
|
[DisplayName("已接通")]
|
|
[NotMapped]
|
|
public decimal TIMELEN_COUT { get; set; }
|
|
[DisplayName("")]
|
|
[NotMapped]
|
|
public decimal TOTAL_CIN { get; set; }
|
|
[DisplayName("")]
|
|
[NotMapped]
|
|
public decimal TIMELEN_CIN { get; set; }
|
|
[DisplayName("通话总时长(分)")]
|
|
[NotMapped]
|
|
public decimal TotalTime { get; set; }
|
|
[DisplayName("未接通")]
|
|
//外呼未成功的
|
|
[NotMapped]
|
|
public decimal TOTAL_UN_COUNT { get; set; }
|
|
[DisplayName("")]
|
|
[NotMapped]
|
|
public DateTime? Starttime { get; set; }
|
|
[DisplayName("维度")]
|
|
[NotMapped]
|
|
public decimal WD { get; set; }
|
|
[DisplayName("外呼次数(总)")]
|
|
public decimal TOTALCALL { get; set; }
|
|
[DisplayName("均通话时长")]
|
|
public decimal AVGCALL { get; set; }
|
|
[DisplayName("接通率")]
|
|
public string JT { get; set; }
|
|
}
|
|
|
|
public class All_WD_CallReportModel
|
|
{
|
|
[NotMapped]
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
[NotMapped]
|
|
public List<WD_CallReportModel> list
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|