30 lines
632 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 TimeAdjustInput : BaseInput
{
/// <summary>
/// 采集编码
/// </summary>
public string ItemCode { get; set; }
/// <summary>
/// 集中器地址
/// </summary>
public string FocusID { get; set; }
/// <summary>
/// 电表1
/// </summary>
public string MeterType { get; set; }
}
}