96 lines
2.0 KiB
C#
96 lines
2.0 KiB
C#
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;
|
|
|
|
/// <summary>
|
|
/// 主地震仪电压
|
|
/// </summary>
|
|
public float Seis1_Voltage
|
|
{
|
|
get { return Seis1_voltage; }
|
|
set { Seis1_voltage = value; }
|
|
}
|
|
|
|
|
|
private float Seis1_current;
|
|
|
|
/// <summary>
|
|
/// 主地震仪电流
|
|
/// </summary>
|
|
public float Seis1_Current
|
|
{
|
|
get { return Seis1_current; }
|
|
set { Seis1_current = value; }
|
|
}
|
|
|
|
|
|
private float Seis2_voltage;
|
|
|
|
/// <summary>
|
|
/// 备地震仪电压
|
|
/// </summary>
|
|
public float Seis2_Voltage
|
|
{
|
|
get { return Seis2_voltage; }
|
|
set { Seis2_voltage = value; }
|
|
}
|
|
|
|
|
|
private float Seis2_current;
|
|
|
|
/// <summary>
|
|
/// 备地震仪电流
|
|
/// </summary>
|
|
public float Seis2_Current
|
|
{
|
|
get { return Seis2_current; }
|
|
set { Seis2_current = value; }
|
|
}
|
|
|
|
|
|
private float Video_voltage;
|
|
|
|
/// <summary>
|
|
/// 摄像电压
|
|
/// </summary>
|
|
public float Video_Voltage
|
|
{
|
|
get { return Video_voltage; }
|
|
set { Video_voltage = value; }
|
|
}
|
|
|
|
|
|
private float Video_current;
|
|
|
|
/// <summary>
|
|
/// 摄像电流
|
|
/// </summary>
|
|
public float Video_Current
|
|
{
|
|
get { return Video_current; }
|
|
set { Video_current = value; }
|
|
}
|
|
|
|
|
|
private float Out_Voltage12_reserved2;
|
|
|
|
/// <summary>
|
|
/// 接驳盒12V输出电压2-预留
|
|
/// </summary>
|
|
public float Out_Voltage12_Reserved2
|
|
{
|
|
get { return Out_Voltage12_reserved2; }
|
|
set { Out_Voltage12_reserved2 = value; }
|
|
}
|
|
|
|
}
|
|
}
|