88 lines
2.1 KiB
C#
88 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace InSituLaboratory.Entities
|
|
{
|
|
/// <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; }
|
|
|
|
}
|
|
}
|