25 lines
494 B
C#
25 lines
494 B
C#
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 ReadTimeInput: BaseInput
|
||
{
|
||
public int AmmeterId { get; set; }
|
||
|
||
public string AmmeterAddress { get; set; }
|
||
|
||
/// <summary>
|
||
/// 电表:1
|
||
/// </summary>
|
||
public int MeterType { get; set; }
|
||
|
||
}
|
||
}
|