31 lines
883 B
C#
31 lines
883 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
public class Wx_Rcontact_List
|
|
{
|
|
public int pkid { get; set; }
|
|
public string jobwxusername { get; set; }
|
|
/// <summary>
|
|
/// 工作微信昵称
|
|
/// </summary>
|
|
public string jobnickname { get; set; }
|
|
/// <summary>
|
|
/// 工作微信号
|
|
/// </summary>
|
|
public string jobalias { get; set; }
|
|
public string username { get; set; }
|
|
public string alias { get; set; }
|
|
public string conremark { get; set; }
|
|
public string nickname { get; set; }
|
|
public int? type { get; set; }
|
|
|
|
public DateTime? ctime { get; set; }
|
|
public string ctimestr { get; set; }
|
|
public int? lastchattime { get; set; }
|
|
public DateTime? rctime { get; set; }
|
|
}
|
|
}
|