using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace Model { [SugarTable("data")] public class DataEntity : BaseEntity { public DateTime InsertTime { get; set; } public string? 脱脂喷淋泵压力值 { get; set; } public string? 脱脂PH值 { get; set; } public string? 陶化PH值 { get; set; } public string? 粗洗喷淋泵压力值 { get; set; } public string? 陶化喷淋泵压力值 { get; set; } public string? 精洗喷淋泵压力值 { get; set; } public string? 水分炉测量温度 { get; set; } public string? 固化炉测量温度 { get; set; } public string? 厂房温度 { get; set; } public string? 厂房湿度 { get; set; } } }