31 lines
725 B
C#
31 lines
725 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[Table("WW_EXTUSER")]
|
|
public class WW_EXTUSER
|
|
{
|
|
[Key]
|
|
public string? USERID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public DateTime? LASTUPDATE { get; set; }
|
|
|
|
public int? ERRNUMS { get; set; }
|
|
|
|
public string? NAME { get; set; }
|
|
|
|
public string? AVATAR { get; set; }
|
|
public string? REMOTEID { get; set; }
|
|
public string? EXINFO { get; set; }
|
|
public string? CORPID { get; set; }
|
|
|
|
public virtual ICollection<WW_EXTUSER_RESID> WW_EXTUSER_RESID { get; set; }
|
|
}
|
|
}
|