35 lines
961 B
C#
35 lines
961 B
C#
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; }
|
|
/// <summary>
|
|
/// 最后聊天时间
|
|
/// </summary>
|
|
public DateTime? lmsgtime { get; set; }
|
|
/// <summary>
|
|
/// 首次聊天时间
|
|
/// </summary>
|
|
public DateTime? fmsgtime { get; set; }
|
|
|
|
public string alias { get; set; }
|
|
public string mobile { get; set; }
|
|
public string email { get; set; }
|
|
}
|
|
}
|