using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 读取时段输入
///
public class ReadTimeInput: BaseInput
{
public int AmmeterId { get; set; }
public string AmmeterAddress { get; set; }
///
/// 电表:1
///
public int MeterType { get; set; }
}
}