using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 电力价格时设置 /// public class ElecPriceHourSetting { /// /// /// public ElecPriceHourSetting() { } /// /// /// public ElecPriceHourSetting(ElecPriceHourSetting rhs) { this.Name = rhs.Name; this.StartHour = rhs.StartHour; this.EndHour = rhs.EndHour; this.Price = rhs.Price; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 开始小时(0-23) /// public int StartHour { get; set; } /// /// 结束小时(1-24) /// public int EndHour { get; set; } /// /// 价格 /// public double Price { get; set; } /// /// 备注 /// public string Description { get; set; } } }