namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.WX_BIZINFO")] public partial class WX_BIZINFO { [Key] [DatabaseGenerated(DatabaseGeneratedOption.None)] public long PKID { get; set; } [Required] [StringLength(200)] public string USERNAME { get; set; } [StringLength(200)] public string BRANDLIST { get; set; } [StringLength(200)] public string BRANDLISTVERSION { get; set; } [StringLength(200)] public string BRANDLISTCONTENT { get; set; } public decimal? BRANDFLAG { get; set; } [StringLength(2000)] public string EXTINFO { get; set; } [StringLength(2000)] public string BRANDINFO { get; set; } [StringLength(500)] public string BRANDICONURL { get; set; } public decimal? UPDATETIME { get; set; } public decimal? HADALERT { get; set; } public decimal? ACCEPTTYPE { get; set; } public decimal? TYPE { get; set; } public decimal? STATUS { get; set; } [StringLength(100)] public string ENTERPRISEFATHER { get; set; } [StringLength(50)] public string KFWORKERID { get; set; } public decimal? SPECIALTYPE { get; set; } [StringLength(100)] public string ATTRSYNCVERSION { get; set; } public decimal? INCREMENTUPDATETIME { get; set; } public decimal? BITFLAG { get; set; } [StringLength(50)] public string ALIAS { get; set; } [StringLength(50)] public string NICKNAME { get; set; } [StringLength(100)] public string CONREMARK { get; set; } public DateTime? CTIME { get; set; } public DateTime? UTIME { get; set; } [StringLength(100)] public string RESID { get; set; } } }