2025-04-17 20:28:50 +08:00

50 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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