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.
using System.ComponentModel.DataAnnotations;
namespace Entity.Api.Req;
public partial class ElecPriceModelVersionDetailReq
{
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
/// <summary>
/// 版本
/// </summary>
public int Version {get;set;}
/// 价格
// public int? Price {get;set;}
public double Price { get; set; }
/// Desc:尖峰平谷类型;1-尖;2-峰;3-平;4-谷
public int? Type {get;set;}
}