地铁二期项目正式开始

ExToExcel.cs 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace YTSoft.BaseCallCenter.MVCWeb.Models
  6. {
  7. public class ExToExcel
  8. {
  9. public string dateParty
  10. {
  11. get;
  12. set;
  13. }
  14. public string workorderNum
  15. {
  16. get;
  17. set;
  18. }
  19. public string cusName
  20. {
  21. get;
  22. set;
  23. }
  24. public string phoneNumber
  25. {
  26. get;
  27. set;
  28. }
  29. public string userInfo
  30. {
  31. get;
  32. set;
  33. }
  34. public int? status
  35. {
  36. get;
  37. set;
  38. }
  39. public int? bussType
  40. {
  41. get;
  42. set;
  43. }
  44. public int? detailType
  45. {
  46. get;
  47. set;
  48. }
  49. public string Content
  50. {
  51. get;
  52. set;
  53. }
  54. public int? GoType
  55. {
  56. get;
  57. set;
  58. }
  59. public int? FromType
  60. {
  61. get;
  62. set;
  63. }
  64. public int? F_HASTENCOUNTS
  65. {
  66. get;
  67. set;
  68. }
  69. public int? F_RETURNVISITRESULT
  70. {
  71. get;
  72. set;
  73. }
  74. }
  75. }