using System;
namespace NetCore.Model.qw
{
public class hg_ordervoice
{
public int id { get; set; }
///
/// 企业ID
///
public string corpid { get; set; }
public string tablename { get; set; }
///
/// 消息的Seq
///
public int seq { get; set; }
///
/// 消息ID
///
public string msgid { get; set; }
public DateTime msgctime { get; set; }
public string msgtype { get; set; }
///
/// 文件的md5值
///
public string md5sum { get; set; }
///
/// 文件名称
///
public string nfile { get; set; }
///
/// 合规时间
///
public DateTime checkdate { get; set; }
///
/// 时间
///
public DateTime ctime { get; set; }
///
/// 状态 0:未翻译 1:已翻译 2:翻译失败
///
public int transstatus { get; set; }
///
/// 翻译执行时间
///
public DateTime transtime { get; set; }
///
/// 翻译后的内容
///
public string transcontent { get; set; }
///
/// 自动合规状态1:已经合规 0:未合规
///
public int ishg { get; set; }
///
/// 合规时间
///
public DateTime hgtime { get; set; }
public string voiceUrl { get; set; }
public string fromer { get; set; }
public string tolist { get; set; }
}
}