68 lines
1.8 KiB
C#
68 lines
1.8 KiB
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace SA.Entity.zxdcrm_Models
|
||
{
|
||
///<summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("voice_receive")]
|
||
public partial class VoiceReceive
|
||
{
|
||
public VoiceReceive(){
|
||
|
||
|
||
}
|
||
/// <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:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="ctime")]
|
||
public DateTime? Ctime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:1:已经处理过 0:新的地址
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="isAready")]
|
||
public int? IsAready {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="retrun_link")]
|
||
public string? Retrun_link {get;set;}
|
||
|
||
}
|
||
}
|