using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.WX_ALIVE")] public partial class WX_ALIVE { [Key] [StringLength(200)] public string USERNAME { get; set; } public DateTime LASTTIME { get; set; } public string VERSION { get; set; } public string UIN { get; set; } } }