namespace Entity.Api.Resp;
///
/// 电价模型详情
///
public class ElecPriceModelVersionDetailResp
{
public int Version { get; set; }
public TimeSpan StartTime { get; set; }
public TimeSpan EndTime { get; set; }
///
/// Desc:价格;以分为单位存储
/// Default:
/// Nullable:True
///
public int? Price {get;set;}
///
/// Desc:尖峰平谷类型;1-尖;2-峰;3-平;4-谷
/// Default:
/// Nullable:True
///
public int? Type {get;set;}
}