Mini.Crm/Mini.Model/ViewModel/Wx_WorkAccountModel.cs

33 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Mini.Model.ViewModel
{
public class Wx_WorkAccountModel
{
public int pkid { get; set; }
public string username { get; set; }
public string alias { get; set; }
public string conremark { get; set; }
public string nickname { get; set; }
public string pyinitial { get; set; }
public int type { get; set; }
public DateTime ctime { get; set; }
public int? isfenghao { get; set; }
public DateTime? fenghaotime { get; set; }
public string status { get; set; }
public string version { get; set; }
public DateTime? lasttime { get; set; }
public DateTime? lastfriendtime { get; set; }
public string lastfriendtimestr { get; set; }
public DateTime? lastmsgtime { get; set; }
public string lastmsgtimestr { get; set; }
public string lasttimestr { get; set; }
public int isOnlie { get; set; }
public string uin { get; set; }
public string forever_uin { get; set; }
}
}