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

64 lines
1.5 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 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; }
}
}