20230201_145_upperpc/InSituLaboratory.Entities/SysData/cavityoperationstatus.cs

88 lines
2.1 KiB
C#
Raw Normal View History

2024-03-13 00:46:26 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-08 10:01:39 +00:00
namespace InSituLaboratory.Entities.SysData
2024-03-13 00:46:26 +00:00
{
/// <summary>
/// 腔体运行状态表
/// </summary>
public class cavityoperationstatus : BaseCavity
{
/// <summary>
/// 数据编号
/// </summary>
[Key]
public int DataIdNum { get; set; }
/// <summary>
/// 电能转换板1的48V电压
/// </summary>
public float Voltage48V1 { get; set; }
/// <summary>
/// 电能转换板1的48V电流
/// </summary>
public float Current48V1 { get; set; }
/// <summary>
/// 电能转换板1的24V电流
/// </summary>
public float Current24V1 { get; set; }
/// <summary>
/// 电能转换板2的48V电流
/// </summary>
public float Current48V2 { get; set; }
/// <summary>
/// 电能转换板2的24V电流
/// </summary>
public float Current24V2 { get; set; }
/// <summary>
/// 电能转换板3的48V电流
/// </summary>
public float Current48V3 { get; set; }
/// <summary>
/// 电能转换板3的24V电流
/// </summary>
public float Current24V3 { get; set; }
/// <summary>
/// 电能转换板4的48V电流
/// </summary>
public float Current48V4 { get; set; }
/// <summary>
/// 电能转换板4的24V电流
/// </summary>
public float Current24V4 { get; set; }
/// <summary>
/// 漏电流模块1
/// </summary>
public float LeakageCurrent1 { get; set; }
/// <summary>
/// 漏电流模块2
/// </summary>
public float LeakageCurrent2 { get; set; }
/// <summary>
/// 漏电流模块3
/// </summary>
public float LeakageCurrent3 { get; set; }
/// <summary>
/// 漏电流模块4
/// </summary>
public float LeakageCurrent4 { get; set; }
}
}