SACenter/SA.Entity/zxdcrm_Models/VoiceAliyunReturnErro.cs

94 lines
2.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///<summary>
///
///</summary>
[SugarTable("voice_aliyun_return_erro")]
public partial class VoiceAliyunReturnErro
{
public VoiceAliyunReturnErro(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
/// <summary>
/// Desc:文件的urlmd5值用于判断是否是相同的url文件
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="file_md5")]
public string? File_md5 {get;set;}
/// <summary>
/// Desc:语音文件地址
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="file_link")]
public string? File_link {get;set;}
/// <summary>
/// Desc:任务ID
/// Default:
/// Nullable:True
/// </summary>
public string? TaskId {get;set;}
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
/// <summary>
/// Desc:请求时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? RequestTime {get;set;}
/// <summary>
/// Desc:完成时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? SolveTime {get;set;}
/// <summary>
/// Desc:处理时长(讲毫秒转换成秒)
/// Default:
/// Nullable:True
/// </summary>
public int? BizDuration {get;set;}
/// <summary>
/// Desc:状态码 0表示新记录 1表示其他状态参照阿里云接口状态
/// Default:
/// Nullable:True
/// </summary>
public int? StatusCode {get;set;}
/// <summary>
/// Desc:状态字符串
/// Default:
/// Nullable:True
/// </summary>
public string? StatusText {get;set;}
}
}