using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.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; } } }