24 lines
554 B
C#
24 lines
554 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
/// <summary>
|
|
/// 碳排放-各系统碳排放量统计
|
|
/// </summary>
|
|
public class get_system_purge
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<system_purgeData> data { get; set; }
|
|
}
|
|
public class system_purgeData
|
|
{
|
|
public string name { get; set; }
|
|
public decimal? CarbonEmission { get; set; }
|
|
}
|
|
}
|