JinanCementFactory/DataServer/api/get_efficiency_index.cs

23 lines
575 B
C#

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<efficiency_indexData> 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; }
}
}