using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("voice_aliyun_request")] public partial class VoiceAliyunRequest { public VoiceAliyunRequest(){ } /// /// 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:状态码 0:表示新记录 1:表示其他状态(参照阿里云接口状态) /// Default: /// Nullable:True /// public int? StatusCode {get;set;} /// /// Desc:状态字符串 /// Default: /// Nullable:True /// public string? StatusText {get;set;} /// /// Desc:请求时候的状态码200正常,其他:不正常 /// Default: /// Nullable:True /// public int? HttpStatus {get;set;} /// /// Desc:请求的时候状态描述 /// Default: /// Nullable:True /// public string? HttpStatusTxt {get;set;} /// /// Desc:1:已经返回 0:未返回 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="isReturnBack")] public int? IsReturnBack {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:回调时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="retruntime")] public DateTime? Retruntime {get;set;} /// /// Desc:文件名称,用于返回文件后进行删除操作 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="filename")] public string? Filename {get;set;} } }