28 lines
667 B
C#
28 lines
667 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_electricity_rate
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<electricity_rateData> data { get; set; }
|
|
}
|
|
public class electricity_rateData
|
|
{
|
|
public string time { get; set; }
|
|
/// <summary>
|
|
/// 电费
|
|
/// </summary>
|
|
public decimal? Electricity { get; set; }
|
|
/// <summary>
|
|
/// 销售电价
|
|
/// </summary>
|
|
public decimal? Electrovalence { get; set; }
|
|
}
|
|
}
|