36 lines
720 B
C#
36 lines
720 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Wework
|
|
{
|
|
[Table("ww_hhuser")]
|
|
public class WwHhuser
|
|
{
|
|
public string Userid { get; set; }
|
|
|
|
public string Corpid { get; set; }
|
|
|
|
public string? Uname { get; set; }
|
|
|
|
public string? Exinfo { get; set; }
|
|
|
|
public DateTime? Lmsgtime { get; set; }
|
|
|
|
public int Deptid { get; set; }
|
|
|
|
public DateTime? Fmsgtime { get; set; }
|
|
|
|
public DateTime? Lastupdate { get; set; }
|
|
|
|
public string? Alias { get; set; }
|
|
|
|
public string? Mobile { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
}
|
|
}
|