using System; using System.Collections.Generic; using System.Text; namespace Mini.Model.ViewModel { public class Ww_FindUserShow { /// /// 公司名称 /// public string corpname { get; set; } /// /// 客服ID /// public string userid { get; set; } /// /// 客服姓名 /// public string uname { get; set; } //好友ID public string extuserid { get; set; } /// /// 好友名称 /// public string name { get; set; } /// /// 好友备注 /// public string remark { get; set; } /// /// 时间 /// public string createtime { get; set; } /// /// 备注号码 /// public string remark_mobiles { get; set; } /// /// 头像 /// public string avatar { get; set; } public string corpid { get; set; } } }