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 cavitybatterylevel: BaseCavity { /// /// 数据编号 /// [Key] public int DataIdNum { get; set; } /// /// 电池电压 /// public float Voltage { get; set; } } }