using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("voice_aliyun_return_erro")] public partial class VoiceAliyunReturnErro { public VoiceAliyunReturnErro(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=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:任务ID /// Default: /// Nullable:True /// public string? TaskId {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:请求时间 /// Default: /// Nullable:True /// public DateTime? RequestTime {get;set;} /// /// Desc:完成时间 /// Default: /// Nullable:True /// public DateTime? SolveTime {get;set;} /// /// Desc:处理时长(讲毫秒转换成秒) /// Default: /// Nullable:True /// public int? BizDuration {get;set;} /// /// Desc:状态码 0:表示新记录 1:表示其他状态(参照阿里云接口状态) /// Default: /// Nullable:True /// public int? StatusCode {get;set;} /// /// Desc:状态字符串 /// Default: /// Nullable:True /// public string? StatusText {get;set;} } }