64 lines
1.5 KiB
C#
64 lines
1.5 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 cavityenergyconversion : BaseCavity
|
|
{
|
|
/// <summary>
|
|
/// 数据编号
|
|
/// </summary>
|
|
[Key]
|
|
public int DataIdNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板1 24V使能
|
|
/// </summary>
|
|
public string? Enable1Of24V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板1 12V使能
|
|
/// </summary>
|
|
public string? Enable1Of12V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板2 24V使能
|
|
/// </summary>
|
|
public string? Enable2Of24V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板2 12V使能
|
|
/// </summary>
|
|
public string? Enable2Of12V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板3 24V使能
|
|
/// </summary>
|
|
public string? Enable3Of24V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板3 12V使能
|
|
/// </summary>
|
|
public string? Enable3Of12V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板4 24V使能
|
|
/// </summary>
|
|
public string? Enable4Of24V { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电能转换板4 12V使能
|
|
/// </summary>
|
|
public string? Enable4Of12V { get; set; }
|
|
|
|
}
|
|
|
|
}
|