This commit is contained in:
2021-04-30 10:28:37 +08:00
commit f901e87a6e
9029 changed files with 1810915 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class SingleSerie
{
public string name { get; set; }
public string type { get; set; }
public List<double> data { get; set; }
public List<double> data2 { get; set; }
public List<double> data3 { get; set; }
public List<decimal> data4 { get; set; }
public List<string> dataString { get; set; }
public List<object> dataObject { get; set; }
public List<string> jd { get; set; }
public List<string> sg { get; set; }
public List<string> time { get; set; }
public List<string> ht { get; set; }
public List<string> convert { get; set; }
public List<PieData> pieData { get; set; }
public List<string> loc { get; set; }
}
}