地铁二期项目正式开始

ExToExcel.cs 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. }
  65. }