using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FujianEarthquake.Models { public class JunctionBoxMonitorModel : ParameterModel { private float Seis1_voltage; /// /// 主地震仪电压 /// public float Seis1_Voltage { get { return Seis1_voltage; } set { Seis1_voltage = value; } } private float Seis1_current; /// /// 主地震仪电流 /// public float Seis1_Current { get { return Seis1_current; } set { Seis1_current = value; } } private float Seis2_voltage; /// /// 备地震仪电压 /// public float Seis2_Voltage { get { return Seis2_voltage; } set { Seis2_voltage = value; } } private float Seis2_current; /// /// 备地震仪电流 /// public float Seis2_Current { get { return Seis2_current; } set { Seis2_current = value; } } private float Video_voltage; /// /// 摄像电压 /// public float Video_Voltage { get { return Video_voltage; } set { Video_voltage = value; } } private float Video_current; /// /// 摄像电流 /// public float Video_Current { get { return Video_current; } set { Video_current = value; } } private float Out_Voltage12_reserved2; /// /// 接驳盒12V输出电压2-预留 /// public float Out_Voltage12_Reserved2 { get { return Out_Voltage12_reserved2; } set { Out_Voltage12_reserved2 = value; } } } }