25 lines
761 B
C#
25 lines
761 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
/// <summary>
|
|
/// 语音翻译接收表历史表
|
|
/// </summary>
|
|
[Table("voice_receivehis")]
|
|
public class Voice_ReceiveHis
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)] //设置非自增字段
|
|
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; }
|
|
public DateTime transtime { get; set; }
|
|
public string return_status { get; set; }
|
|
}
|
|
}
|