SACenter/SA.Entity/zxdcrm_Models/VoiceAliyunRequest.cs

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