27 lines
576 B
C#
27 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace InSituLaboratory.Entities.SysData
|
|
{
|
|
/// <summary>
|
|
/// 电池电量表
|
|
/// </summary>
|
|
public class cavitybatterylevel : BaseCavity
|
|
{
|
|
/// <summary>
|
|
/// 数据编号
|
|
/// </summary>
|
|
[Key]
|
|
public int DataIdNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电池电压
|
|
/// </summary>
|
|
public float Voltage { get; set; }
|
|
}
|
|
}
|