| 123456789101112131415161718192021222324252627282930313233 |
- 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<string>
- {
- [Key]
- [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)]
- public string id { get; set; }
- /// <summary>
- /// 坐席客服账号
- /// </summary>
- public string Zxusercode { get; set; }
- /// <summary>
- /// 服务人工号
- /// </summary>
- public string Fwusercode { get; set; }
- /// <summary>
- /// 服务类型
- /// </summary>
- public string Fwtype { get; set; }
- /// <summary>
- /// 服务时间
- /// </summary>
- public DateTime createtime { get; set; }
- }
- }
|