31 lines
830 B
C#
31 lines
830 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
public class Ww_FindUser_Model
|
|
{
|
|
//客服企业号
|
|
public string corpname { get; set; }
|
|
//客服名称
|
|
public string uname { get; set; }
|
|
//客服ID
|
|
public string userid { get; set; }
|
|
public int? deptid { get; set; }
|
|
public string corpid { get; set; }
|
|
//好友ID
|
|
public string extuserid { get; set; }
|
|
//好友名称
|
|
public string name { get; set; }
|
|
//好友json信息
|
|
public string exinfo { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
/// <summary>
|
|
/// 头像
|
|
/// </summary>
|
|
public string avatar { get; set; }
|
|
public string myphone { get; set; }
|
|
}
|
|
}
|