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