颐和api

OnlineserType.cs 892B

123456789101112131415161718192021222324252627282930313233
  1. using MadRunFabric.Common;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Text;
  7. namespace MadRunFabric.Model.TestUserTypeApi
  8. {
  9. public class OnlineserType : IBaseModel<string>
  10. {
  11. [Key]
  12. [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)]
  13. public string id { get; set; }
  14. /// <summary>
  15. /// 坐席客服账号
  16. /// </summary>
  17. public string Zxusercode { get; set; }
  18. /// <summary>
  19. /// 服务人工号
  20. /// </summary>
  21. public string Fwusercode { get; set; }
  22. /// <summary>
  23. /// 服务类型
  24. /// </summary>
  25. public string Fwtype { get; set; }
  26. /// <summary>
  27. /// 服务时间
  28. /// </summary>
  29. public DateTime createtime { get; set; }
  30. }
  31. }