using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Mini.Model.WxEntity { public class Wx_LastMsgTime { [Key] public string username { get; set; } public DateTime lasttime { get; set; } } }