郑州市第一人民医院

Call_OutTaskTelNum.cs 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. using MongoDB.Bson;
  4. using MadRunFabric.Common;
  5. using System.ComponentModel.DataAnnotations;
  6. namespace MadRunFabric.Model.CallCenterApi
  7. {
  8. /// <summary>
  9. /// 外呼号码
  10. /// </summary>
  11. public class Call_OutTaskTelNum : IBaseModel<string>
  12. {
  13. /// <summary>
  14. /// id
  15. /// </summary>
  16. [Key]
  17. [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)]
  18. public string id { get; set; }
  19. public string taskid { get; set; }
  20. public int? cusid { get; set; }
  21. public string cusname { get; set; }
  22. public string cusaddr { get; set; }
  23. public string phone { get; set; }
  24. public string phoneby { get; set; }
  25. public int? fpstate { get; set; }
  26. public int? yjstate { get; set; }
  27. public int? hcstate { get; set; }
  28. public int? userid { get; set; }
  29. public string username { get; set; }
  30. public DateTime? createtime { get; set; } = DateTime.Now;
  31. public string askinfo { get; set; }
  32. public string askres { get; set; }
  33. public int? hjjgid { get; set; }
  34. public string hjjgname { get; set; }
  35. public DateTime? hjjgtime { get; set; }
  36. public int? yhfkid { get; set; }
  37. public string yhfkname { get; set; }
  38. public int? deleteflag { get; set; } = 0;
  39. }
  40. }