You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Entity.Api.Resp;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电价模型详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ElecPriceModelVersionDetailResp
|
|
|
|
|
{
|
|
|
|
|
public int Version { get; set; }
|
|
|
|
|
public TimeSpan StartTime { get; set; }
|
|
|
|
|
public TimeSpan EndTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:价格;以分为单位存储
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
// public int? Price {get;set;}
|
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:尖峰平谷类型;1-尖;2-峰;3-平;4-谷
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? Type {get;set;}
|
|
|
|
|
}
|