namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.WX_WORKACCOUNT_NOTE")] public partial class WX_WORKACCOUNT_NOTE { [Key] [DatabaseGenerated(DatabaseGeneratedOption.None)] public decimal PKID { get; set; } [StringLength(200)] public string USERNAME { get; set; } [StringLength(50)] public string ALIAS { get; set; } [StringLength(200)] public string CONREMARK { get; set; } [StringLength(200)] public string DOMAINLIST { get; set; } [StringLength(100)] public string NICKNAME { get; set; } [StringLength(100)] public string PYINITIAL { get; set; } [StringLength(100)] public string QUANPIN { get; set; } public decimal? SHOWHEAD { get; set; } public decimal? TYPE { get; set; } public decimal? WEIBOFLAG { get; set; } [StringLength(100)] public string WEIBONICKNAME { get; set; } [StringLength(200)] public string CONREMARKPYFULL { get; set; } [StringLength(100)] public string CONREMARKPYSHORT { get; set; } [StringLength(2000)] public string LVBUFF { get; set; } public decimal? VERFYFLAG { get; set; } [StringLength(200)] public string ENCRYPTUSERNAME { get; set; } public decimal? CHATROOMFLAG { get; set; } public decimal? DELETEFLAG { get; set; } [StringLength(200)] public string CONTACTLABELIDS { get; set; } public DateTime? CTIME { get; set; } [StringLength(18)] public string RESID { get; set; } [StringLength(300)] public string QRCODEURL { get; set; } public decimal? INNERUSERID { get; set; } } }