using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataServer.api.EnergyEfficiency
{
///
/// 获取电费电价接口响应实体
///
public class get_electricity_price_response
{
///
/// 返回码
///
public int code { get; set; }
///
/// 返回说明
///
public string msg { get; set; }
///
/// 数据
///
public List data { get; set; }
}
public class electricity_price
{
///
/// 电费
///
public decimal Cost { get; set; }
///
/// 销售单价
///
public decimal UnitPrice { get; set; }
///
/// 月份
///
public string Month { get; set; }
}
}