using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { /// /// 语音翻译接收表 /// [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; } } }