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