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

51 lines
1.2 KiB
C#
Raw Permalink 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
{
public class BatchReadVersionOutput
{
public BatchReadVersionReamrkOutput Remark { get; set; }
}
public class BatchReadVersionReamrkOutput
{
public string AreaCode { get; set; }
public string Address { get; set; }
/// <summary>
/// 厂商代号
/// </summary>
public string MakerNo { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public string DeviceNo { get; set; }
/// <summary>
/// 终端软件版本号
/// </summary>
public string SoftwareVersion { get; set; }
/// <summary>
/// 终端软件发布日期:日月年 如 20240123
/// </summary>
public string SoftwareReleaseDate { get; set; }
/// <summary>
/// 添加时间 如20240123
/// </summary>
public string AddDate { get; set; }
/// <summary>
/// 集中器ID
/// </summary>
public int FocusID { get; set; }
}
}