25 lines
494 B
C#
Raw Normal View History

2024-12-25 16:25:16 +08:00
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; }
}
}