ZZDianXin_API - 郑州电信演示

Market.cs 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. namespace CallCenter.Utility
  8. {
  9. public class Market
  10. {
  11. public List<Ification> product;//产品投诉
  12. public Ification service;//服务投诉
  13. public Ification sediainvolved;//涉媒投诉
  14. public Ification spotcheck;//市场抽检
  15. public Ification other;//其他信息
  16. }
  17. public class Product
  18. {
  19. public List<Date> dates;
  20. public List<Factory> factory;
  21. public List<Factory> problem;
  22. public List<Factory> product;
  23. }
  24. public class Factory
  25. {
  26. public string name;
  27. public int number;
  28. public string proportion;
  29. }
  30. public class Date
  31. {
  32. public int total;//每天总数
  33. public string name;
  34. public int MonthCount1;
  35. public string MonthCount1name;
  36. public string MonthCountmix1;
  37. public int MonthCount2;
  38. public string MonthCount2name;
  39. public string MonthCountmix2;
  40. public int MonthCount3;
  41. public string MonthCount3name;
  42. public string MonthCountmix3;
  43. public int MonthCount4;
  44. public string MonthCount4name;
  45. public string MonthCountmix4;
  46. public int MonthCount5;
  47. public string MonthCount5name;
  48. public string MonthCountmix5;
  49. }
  50. }