using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.DispatchAna.Model { /// /// 其他阀门状态 /// public class ValvePara { /// /// 阀门名称 /// public string Name { get; set; } /// /// 阀门状态 1 开 0 关 /// public int OpenStatus { get; set; } } }