using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///
///
///
[SugarTable("voice_receivehis")]
public partial class VoiceReceivehis
{
public VoiceReceivehis(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,ColumnName="id")]
public int Id {get;set;}
///
/// Desc:文件的urlmd5值,用于判断是否是相同的url文件
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="file_md5")]
public string? File_md5 {get;set;}
///
/// Desc:语音文件地址
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="file_link")]
public string? File_link {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
///
/// Desc:1:已经处理过 0:新的地址
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="isAready")]
public int? IsAready {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="retrun_link")]
public string? Retrun_link {get;set;}
///
/// Desc:转移到本表的时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="transtime")]
public DateTime? Transtime {get;set;}
///
/// Desc:回调状态
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="return_status")]
public string? Return_status {get;set;}
}
}