using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///
///
///
[SugarTable("voice_config")]
public partial class VoiceConfig
{
public VoiceConfig(){
}
///
/// Desc:语音识别项目编码
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,ColumnName="voice_code")]
public string Voice_code {get;set;}
///
/// Desc:阿里云的AppKey(采样率的项目ID)
/// Default:
/// Nullable:False
///
public string Appkey {get;set;}
///
/// Desc:阿里云的accessKeyId
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="accessKeyId")]
public string AccessKeyId {get;set;}
///
/// Desc:阿里云的accessKeySecret
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="accessKeySecret")]
public string AccessKeySecret {get;set;}
///
/// Desc:备注(采样率说明)
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="content")]
public string? Content {get;set;}
///
/// Desc:
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
///
/// Desc:1:正常 0:作废
/// Default:1
/// Nullable:False
///
[SugarColumn(ColumnName="status")]
public int Status {get;set;}
}
}