41 lines
1.1 KiB
C#
41 lines
1.1 KiB
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 ValveControlInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 集中器区位码
|
|||
|
|
/// </summary>
|
|||
|
|
public string AreaCode { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 集中器地址
|
|||
|
|
/// </summary>
|
|||
|
|
public string Address { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 表号
|
|||
|
|
/// </summary>
|
|||
|
|
public int AmmeterId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 0 合闸,开阀, 1 断开、跳闸,关阀
|
|||
|
|
/// </summary>
|
|||
|
|
public int TripState { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采集端端口号
|
|||
|
|
/// </summary>
|
|||
|
|
public string GatherCode { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 表:1,水表:2,燃气表:3,热能表:4 水表流量计:5,燃气表流量计:6,特殊电表:7
|
|||
|
|
/// </summary>
|
|||
|
|
public int MeterType { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|