20241106_MiLu_upperpc/DeerProject/Models/Sys_DeviceModel.cs
2025-02-20 13:54:12 +08:00

269 lines
5.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeerProject.Models
{
/// <summary>
/// 传感器电压/电流
/// </summary>
public class Sys_DeviceModel : SysBaseModel
{
private float noise_Vol;
/// <summary>
/// 噪声设备电压
/// </summary>
public float Noise_Vol
{
get { return noise_Vol; }
set { noise_Vol = value; }
}
private float noise_Cur;
/// <summary>
/// 噪声设备电流
/// </summary>
public float Noise_Cur
{
get { return noise_Cur; }
set { noise_Cur = value; }
}
private float environment_Vol;
/// <summary>
/// 环境设备电压
/// </summary>
public float Environment_Vol
{
get { return environment_Vol; }
set { environment_Vol = value; }
}
private float environment_Cur;
/// <summary>
/// 环境设备电流
/// </summary>
public float Environment_Cur
{
get { return environment_Cur; }
set { environment_Cur = value; }
}
private float positioning1_Vol;
/// <summary>
/// 定位导航1电压
/// </summary>
public float Positioning1_Vol
{
get { return positioning1_Vol; }
set { positioning1_Vol = value; }
}
private float positioning1_Cur;
/// <summary>
/// 定位导航1电流
/// </summary>
public float Positioning1_Cur
{
get { return positioning1_Cur; }
set { positioning1_Cur = value; }
}
private float positioning2_Vol;
/// <summary>
/// 定位导航2电压
/// </summary>
public float Positioning2_Vol
{
get { return positioning2_Vol; }
set { positioning2_Vol = value; }
}
private float positioning2_Cur;
/// <summary>
/// 定位导航2电流
/// </summary>
public float Positioning2_Cur
{
get { return positioning2_Cur; }
set { positioning2_Cur = value; }
}
private float positioning3_Vol;
/// <summary>
/// 定位导航3电压
/// </summary>
public float Positioning3_Vol
{
get { return positioning3_Vol; }
set { positioning3_Vol = value; }
}
private float positioning3_Cur;
/// <summary>
/// 定位导航3电流
/// </summary>
public float Positioning3_Cur
{
get { return positioning3_Cur; }
set { positioning3_Cur = value; }
}
private float positioning4_Vol;
/// <summary>
/// 定位导航4电压
/// </summary>
public float Positioning4_Vol
{
get { return positioning4_Vol; }
set { positioning4_Vol = value; }
}
private float positioning4_Cur;
/// <summary>
/// 定位导航4电流
/// </summary>
public float Positioning4_Cur
{
get { return positioning4_Cur; }
set { positioning4_Cur = value; }
}
private float underwater_Vol;
/// <summary>
/// 水下作业电压
/// </summary>
public float Underwater_Vol
{
get { return underwater_Vol; }
set { underwater_Vol = value; }
}
private float underwater_Cur;
/// <summary>
/// 水下作业电流
/// </summary>
public float Underwater_Cur
{
get { return underwater_Cur; }
set { underwater_Cur = value; }
}
private float fiberOptic_Vol;
/// <summary>
/// 光纤阵电压
/// </summary>
public float FiberOptic_Vol
{
get { return fiberOptic_Vol; }
set { fiberOptic_Vol = value; }
}
private float fiberOptic_Cur;
/// <summary>
/// 光纤阵电流
/// </summary>
public float FiberOptic_Cur
{
get { return fiberOptic_Cur; }
set { fiberOptic_Cur = value; }
}
private float video_Vol;
/// <summary>
/// 摄像电压
/// </summary>
public float Video_Vol
{
get { return video_Vol; }
set { video_Vol = value; }
}
private float video_Cur;
/// <summary>
/// 摄像电流
/// </summary>
public float Video_Cur
{
get { return video_Cur; }
set { video_Cur = value; }
}
private float standby_Vol;
/// <summary>
/// 备用2电压
/// </summary>
public float Standby_Vol
{
get { return standby_Vol; }
set { standby_Vol = value; }
}
private float standby_Cur;
/// <summary>
/// 备用2电流
/// </summary>
public float Standby_Cur
{
get { return standby_Cur; }
set { standby_Cur = value; }
}
private float leakage_Vol;
/// <summary>
/// 漏水环电压
/// </summary>
public float Leakage_Vol
{
get { return leakage_Vol; }
set { leakage_Vol = value; }
}
private float reserve_Vol;
/// <summary>
/// 预留
/// </summary>
public float Reserve_Vol
{
get { return reserve_Vol; }
set { reserve_Vol = value; }
}
}
}