地铁二期项目正式开始

ExToExcel.cs 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. public string level
  75. {
  76. get;
  77. set;
  78. }
  79. public int? labelname
  80. {
  81. get;
  82. set;
  83. }
  84. }
  85. }