22 lines
565 B
C#
22 lines
565 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
/// <summary>
|
|
/// 语音翻译接收表
|
|
/// </summary>
|
|
[Table("voice_receive")]
|
|
public class Voice_Receive
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string file_md5 { get; set; }
|
|
public string file_link { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public int isAready { get; set; }
|
|
public string retrun_link { get; set; }
|
|
}
|
|
}
|