22 lines
615 B
C#
22 lines
615 B
C#
using System;
|
|
|
|
namespace NetCore.Model.qw
|
|
{
|
|
public class ww_record
|
|
{
|
|
|
|
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 DateTime? endtime { get; set; }
|
|
public string filename { get; set; }
|
|
public int length { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int calltype { get; set; }
|
|
}
|
|
}
|