41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
public class Ww_RecordModel
|
|
{
|
|
public int ? deptid { get; set; }
|
|
public string voiceid { get; set; }
|
|
public string corpid { get; set; }
|
|
public string fromer { get; set; }
|
|
public string tolist { get; set; }
|
|
public string roomid { get; set; }
|
|
public string msgid { get; set; }
|
|
public DateTime starttime { get; set; }
|
|
public string starttimestr { get; set; }
|
|
public DateTime endtime { get; set; }
|
|
public string endtimestr { get; set; }
|
|
public string filename { get; set; }
|
|
public int length { get; set; }
|
|
public string ctime { get; set; }
|
|
public int calltype { get; set; }
|
|
|
|
/// <summary>
|
|
/// 企业号名称
|
|
/// </summary>
|
|
public string corpname { get; set; }
|
|
/// <summary>
|
|
/// 客服名称
|
|
/// </summary>
|
|
public string kefuname { get; set; }
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
public string customername { get; set; }
|
|
|
|
public string remarkname { get; set; }
|
|
}
|
|
}
|