This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace Entity.Api.Resp;
/// <summary>
/// 电价模型详情
/// </summary>
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-谷
public int? Type {get;set;}
}