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