| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity
- {
- public class SettingEntity
- {
- public float temperature { get; set; }
- public float pressure { get; set; }
- public DateTime createTime { get;set;}
- public float temperatureLowerCover { get; set; }
- public float temperatureUpperCover { get; set; }
- public float temperatureLowerGlass { get; set; }
- public int airSwap { get; set; }
- }
- }
|