using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 读取时段输出
///
public class ReadTimeOutput
{
///
/// 电表ID
///
public int AmmeterID { get; set; }
///
/// J (尖),F (峰),P (平),G (谷)
///
public string RateType { get; set; }
///
/// 起始时间(如尖时段起始时间 HH:mm)
///
public string StartTime { get; set; }
///
/// 结束时间(如尖时段结束时间 HH:mm)
///
public string EndTime { get; set; }
///
/// 月份 格式 1,2,3,4,5,6,7,8,9,10,11,12
///
public string RateMonth { get; set; }
///
/// 状态 0:有效 -1:删除
///
public int State { get; set; }
///
/// 时段类型 用数字表示 一时段用1 二时段用2
///
public int TimesType { get; set; }
}
}