20211010_CZPM_upperpc/垂直剖面浮标临时测试软件v1.7/垂直剖面浮标临时测试软件/Model/Enviroment_Model.cs

45 lines
1.5 KiB
C#
Raw Permalink Normal View History

2023-07-27 03:01:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace .Model
{
public class Enviroment_Model
{
//浮标温度
public float FB_Tem { get; set; } = (float)0;
//浮标湿度
public float FB_Hum { get; set; } = (float)0;
//24V电池输入电压
public float FB_Vol_24_in { get; set; } = (float)0;
//24V电池输入电流
public float FB_Cur_24_in { get; set; } = (float)0;
//48V输出电压
public float FB_Vol_48_out { get; set; } = (float)0;
//95V输出电压
public float FB_Vol_95_out { get; set; } = (float)0;
//潜标温度1
public float QB_Tem1 { get; set; } = (float)0;
//潜标温度2
public float QB_Tem2 { get; set; } = (float)0;
//潜标湿度
public float QB_Hum { get; set; } = (float)0;
//潜标漏水
public float QB_Leak { get; set; } = (float)0;
//接驳盒温度1
public float JBH_Tem1 { get; set; } = (float)0;
//接驳盒温度2
public float JBH_Tem2 { get; set; } = (float)0;
//接驳盒湿度
public float JBH_Hum { get; set; } = (float)0;
//接驳盒漏水
public float JBH_Leak { get; set; } = (float)0;
//接驳盒24V 1
public float JBH_Vol_24V_out { get; set; } = (float)0;
//接驳盒24V 2
public float JBH_Cur_24V_out { get; set; } = (float)0;
}
}