ComplianceServer/oldcode/Model/DTO/friendAndRcontact.cs

30 lines
887 B
C#

namespace WX.CRM.Model.DTO
{
/// <summary>
/// 被加信息和rcontact
/// </summary>
public class friendAndRcontact
{
//==friend部分
public long type { get; set; }
public long msgid { get; set; }
public string talker { get; set; }
public string jobusername { get; set; }
public long createtime { get; set; }
//=====rcontact 部分
public int upstatus { get; set; }
public string alias { get; set; }
public string conRemark { get; set; }
public string nickname { get; set; }
public string jobwxusername { get; set; }
public string username { get; set; }
public long ctime { get; set; }
public int? rcontactType { get; set; }
/// <summary>
/// 客户ID
/// </summary>
public string resid { get; set; }
}
}