30 lines
870 B
C#
30 lines
870 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.WxEntity
|
|
{
|
|
public class Wx_Rcontact
|
|
{
|
|
[Key]
|
|
public int pkid { get; set; }
|
|
public string jobwxusername { get; set; }
|
|
public string username { get; set; }
|
|
public string alias { get; set; }
|
|
public string conremark { get; set; }
|
|
public string nickname { get; set; }
|
|
public int? showhead { get; set; }
|
|
public int? type { get; set; }
|
|
public int? weiboflag { get; set; }
|
|
|
|
public DateTime? ctime { get; set; }
|
|
public string resid { get; set; }
|
|
public int? lastchattime { get; set; }
|
|
public DateTime? bindrestime { get; set; }
|
|
public DateTime? rctime { get; set; }
|
|
public int? upkid { get; set; }
|
|
|
|
}
|
|
}
|