using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Entities
{
///
/// 腔体电能转换板使能状态表
///
public class cavityenergyconversion : BaseCavity
{
///
/// 数据编号
///
[Key]
public int DataIdNum { get; set; }
///
/// 电能转换板1 24V使能
///
public string? Enable1Of24V { get; set; }
///
/// 电能转换板1 12V使能
///
public string? Enable1Of12V { get; set; }
///
/// 电能转换板2 24V使能
///
public string? Enable2Of24V { get; set; }
///
/// 电能转换板2 12V使能
///
public string? Enable2Of12V { get; set; }
///
/// 电能转换板3 24V使能
///
public string? Enable3Of24V { get; set; }
///
/// 电能转换板3 12V使能
///
public string? Enable3Of12V { get; set; }
///
/// 电能转换板4 24V使能
///
public string? Enable4Of24V { get; set; }
///
/// 电能转换板4 12V使能
///
public string? Enable4Of12V { get; set; }
}
}