using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; namespace YTSoft.BaseCallCenter.MVCWeb.Models { public class WorkOrderPieModel { /// /// 饼图分类名称 /// public string PieTypeArrName { get; set; } /// /// 饼图数据Json /// public string PieDataJson { get; set; } /// /// 咨询 /// public string Week1 { get; set; } /// /// 表扬 /// public string Week2 { get; set; } /// /// 挂失 /// public string Week3{ get; set; } /// /// 建议 /// public string Week4 { get; set; } /// /// 投诉 /// public string Week5{ get; set; } } }