27 lines
587 B
C#
27 lines
587 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.EnergySystem.Dto
|
|||
|
|
{
|
|||
|
|
public class ReadingOutput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// true:成功,false:失败
|
|||
|
|
/// </summary>
|
|||
|
|
public bool ValidData { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///0C_129_1 数据类型 总示值
|
|||
|
|
/// </summary>
|
|||
|
|
public string DataType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 示值
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal ReadValue { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|