using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace CallCenter.Utility { public class Market { public List product;//产品投诉 public Ification service;//服务投诉 public Ification sediainvolved;//涉媒投诉 public Ification spotcheck;//市场抽检 public Ification other;//其他信息 } public class Product { public List dates; public List factory; public List problem; public List product; } public class Factory { public string name; public int number; public string proportion; } public class Date { public int total;//每天总数 public string name; public int MonthCount1; public string MonthCount1name; public string MonthCountmix1; public int MonthCount2; public string MonthCount2name; public string MonthCountmix2; public int MonthCount3; public string MonthCount3name; public string MonthCountmix3; public int MonthCount4; public string MonthCount4name; public string MonthCountmix4; public int MonthCount5; public string MonthCount5name; public string MonthCountmix5; } }