using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.OnlineServiceApi { public class T_Msg_Chat : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 内容 /// public string Msgcontent { get; set; } /// /// 创建时间 /// public DateTime createtime { get; set; } /// /// 消息来源 /// public string fromuserid { get; set; } /// /// 消息发送给谁 /// public string touserid { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } /// /// 区分微信接口和网站接口 /// public int isonetype { get; set; } } }