DataEntity.cs 857 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using SqlSugar;
  7. namespace Model
  8. {
  9. [SugarTable("data")]
  10. public class DataEntity : BaseEntity
  11. {
  12. public DateTime InsertTime { get; set; }
  13. public string? 脱脂喷淋泵压力值 { get; set; }
  14. public string? 脱脂pH值 { get; set; }
  15. public string? 陶化pH值 { get; set; }
  16. public string? 粗洗喷淋泵压力值 { get; set; }
  17. public string? 陶化喷淋泵压力值 { get; set; }
  18. public string? 精洗喷淋泵压力值 { get; set; }
  19. public string? 水分炉测量温度 { get; set; }
  20. public string? 固化炉测量温度 { get; set; }
  21. public string? 厂内温度 { get; set; }
  22. public string? 厂内湿度 { get; set; }
  23. }
  24. }