using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_efficiency_index { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class efficiency_indexData { public string EfficiencyName { get; set; } public int AdvancedValue { get; set; } public int Enterprise { get; set; } public decimal? Year { get; set; } } }