using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.TestUserTypeApi { public class OnlineserType : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 坐席客服账号 /// public string Zxusercode { get; set; } /// /// 服务人工号 /// public string Fwusercode { get; set; } /// /// 服务类型 /// public string Fwtype { get; set; } /// /// 服务时间 /// public DateTime createtime { get; set; } } }