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.
99 lines
3.2 KiB
99 lines
3.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HybirdFrameworkEntity
|
|
{
|
|
public class CMD1108
|
|
{
|
|
/// <summary>
|
|
/// 开始小时 0~24
|
|
/// </summary>
|
|
public byte StartHour1 { get; set; }
|
|
/// <summary>
|
|
/// 开始分钟 0或30
|
|
/// </summary>
|
|
public byte STartMin1 { get; set; }
|
|
/// <summary>
|
|
/// 结束小时 0~24
|
|
/// </summary>
|
|
public byte EndHour1 { get; set; }
|
|
/// <summary>
|
|
/// 结束分钟 0或30
|
|
/// </summary>
|
|
public byte EndMin1 { get; set; }
|
|
/// <summary>
|
|
/// 费率1 该时段内每度电的电费,用整型值表示,要乘 0.01才能得到真实的值
|
|
/// </summary>
|
|
public uint Rate1 { get; set; }
|
|
|
|
public byte StartHour2 { get; set; }
|
|
public byte STartMin2 { get; set; }
|
|
public byte EndHour2 { get; set; }
|
|
public byte EndMin2 { get; set; }
|
|
public uint Rate2 { get; set; }
|
|
|
|
public byte StartHour3 { get; set; }
|
|
public byte STartMin3 { get; set; }
|
|
public byte EndHour3 { get; set; }
|
|
public byte EndMin3 { get; set; }
|
|
public uint Rate3 { get; set; }
|
|
|
|
public byte StartHour4 { get; set; }
|
|
public byte STartMin4 { get; set; }
|
|
public byte EndHour4 { get; set; }
|
|
public byte EndMin4 { get; set; }
|
|
public uint Rate4 { get; set; }
|
|
|
|
public byte StartHour5 { get; set; }
|
|
public byte STartMin5 { get; set; }
|
|
public byte EndHour5 { get; set; }
|
|
public byte EndMin5 { get; set; }
|
|
public uint Rate5 { get; set; }
|
|
|
|
public byte StartHour6 { get; set; }
|
|
public byte STartMin6 { get; set; }
|
|
public byte EndHour6 { get; set; }
|
|
public byte EndMin6 { get; set; }
|
|
public uint Rate6 { get; set; }
|
|
|
|
public byte StartHour7 { get; set; }
|
|
public byte STartMin7 { get; set; }
|
|
public byte EndHour7 { get; set; }
|
|
public byte EndMin7 { get; set; }
|
|
public uint Rate7 { get; set; }
|
|
|
|
public byte StartHour8 { get; set; }
|
|
public byte STartMin8 { get; set; }
|
|
public byte EndHour8 { get; set; }
|
|
public byte EndMin8 { get; set; }
|
|
public uint Rate8 { get; set; }
|
|
|
|
public byte StartHour9 { get; set; }
|
|
public byte STartMin9 { get; set; }
|
|
public byte EndHour9 { get; set; }
|
|
public byte EndMin9 { get; set; }
|
|
public uint Rate9 { get; set; }
|
|
|
|
public byte StartHour10 { get; set; }
|
|
public byte STartMin10 { get; set; }
|
|
public byte EndHour10 { get; set; }
|
|
public byte EndMin10 { get; set; }
|
|
public uint Rate10 { get; set; }
|
|
|
|
public byte StartHour11 { get; set; }
|
|
public byte STartMin11 { get; set; }
|
|
public byte EndHour11 { get; set; }
|
|
public byte EndMin11 { get; set; }
|
|
public uint Rate11 { get; set; }
|
|
|
|
public byte StartHour12 { get; set; }
|
|
public byte STartMin12 { get; set; }
|
|
public byte EndHour12 { get; set; }
|
|
public byte EndMin12 { get; set; }
|
|
public uint Rate12 { get; set; }
|
|
}
|
|
}
|