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

31 lines
759 B
C#
Raw 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
{
/// <summary>
/// 阀控输入
/// </summary>
public class ValveControlInput:BaseInput
{
/// <summary>
/// 表号
/// </summary>
public int AmmeterId { get; set; }
/// <summary>
/// 0 合闸,开阀, 1 断开、跳闸,关阀
/// </summary>
public int TripState { get; set; }
/// <summary>
/// 电表1水表2燃气表3热能表4 水表流量计5燃气表流量计6特殊电表7
/// </summary>
public int MeterType { get; set; }
}
}