35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System;
|
||
|
||
namespace NetCore.Model.wx
|
||
{
|
||
public class wx_hg_ordervoice
|
||
{
|
||
public int id { get; set; }
|
||
public string talename { get; set; }
|
||
public int pkid { get; set; }
|
||
public string msgsvrid { get; set; }
|
||
public int msgtype { get; set; }
|
||
public string nfile { get; set; }
|
||
public DateTime checkdate { get; set; }
|
||
public DateTime? ctime { get; set; }
|
||
/// <summary>
|
||
/// -1 未上传文件 0 已上传文件未翻译 1:已翻译 3:已经调用翻译未返回信息
|
||
/// </summary>
|
||
public int transstatus { get; set; }
|
||
public string transcontent { get; set; }
|
||
|
||
public int ishg { get; set; }
|
||
public string hgtime { get; set; }
|
||
public string voiceUrl { get; set; }
|
||
public string username { get; set; }
|
||
public string talker { get; set; }
|
||
/// <summary>
|
||
/// 工号
|
||
/// </summary>
|
||
public int? eid { get; set; }
|
||
public string kefuname { get; set; }
|
||
|
||
public string nickname { get; set; }
|
||
}
|
||
}
|