TG.WXCRM.V4/NetCore.Model/wx/wx_hg_ordervoice.cs

35 lines
1.1 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;
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; }
}
}