using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.Entities.SysData { /// /// 腔体内部环境 /// public class cavityenvironment : BaseCavity { /// /// 数据编号 /// [Key] public int DataIdNum { get; set; } /// /// 温度1 /// public float Temperature1 { get; set; } /// /// 温度2 /// public float Temperature2 { get; set; } /// /// 湿度1 /// public float HumDataIdNumity1 { get; set; } /// /// 湿度2 /// public float HumDataIdNumity2 { get; set; } /// /// 漏水1 /// public float Leak1 { get; set; } /// /// 漏水2 /// public float Leak2 { get; set; } } }