31 lines
929 B
C#
31 lines
929 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
/// <summary>
|
|
/// 阿里云语音服务请求表
|
|
/// (注:同一条语音可以存放多条记录)
|
|
/// </summary>
|
|
[Table("voice_aliyun_request")]
|
|
public class Voice_Aliyun_Request
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string file_md5 { get; set; }
|
|
public string file_link { get; set; }
|
|
public string TaskId { get; set; }
|
|
public int StatusCode { get; set; }
|
|
public string StatusText { get; set; }
|
|
public int HttpStatus { get; set; }
|
|
public string HttpStatusTxt { get; set; }
|
|
public int isReturnBack { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public DateTime? retruntime { get; set; }
|
|
|
|
public string filename { get; set; }
|
|
|
|
}
|
|
}
|