26 lines
723 B
C#
26 lines
723 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Ww_Record
|
|
{
|
|
[Key]
|
|
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 string ctime { get; set; }
|
|
public int calltype { get; set; }
|
|
|
|
}
|
|
}
|