using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Mini.Model.Entity
{
public class Ww_hhuser
{
[Key]
[Column(Order = 0)]
public string userid { get; set; }
[Key]
[Column(Order = 1)]
public string corpid { get; set; }
public string uname { get; set; }
public string exinfo { get; set; }
public int? deptid { get; set; }
public DateTime? lastupdate { get; set; }
///
/// 最后聊天时间
///
public DateTime? lmsgtime { get; set; }
///
/// 首次聊天时间
///
public DateTime? fmsgtime { get; set; }
public string alias { get; set; }
public string mobile { get; set; }
public string email { get; set; }
}
}