RecipeEntity.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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("recipe")]
  10. public class RecipeEntity : BaseEntity
  11. {
  12. [SugarColumn(ColumnDataType = "Nvarchar(255)", IsNullable = false)]
  13. public string 产品类型 { get; set; }
  14. public string 脱脂设定压力上限值 { get; set; } = string.Empty;
  15. public string 脱脂设定压力下限值 { get; set; } = string.Empty;
  16. public string 粗洗喷淋泵过载上限值 { get; set; } = string.Empty;
  17. public string 粗洗液位下限值 { get; set; } = string.Empty;
  18. public string 陶化喷淋泵过载上限值 { get; set; } = string.Empty;
  19. public string 精洗喷淋泵过载上限值 { get; set; } = string.Empty;
  20. public string 精洗液位下限值 { get; set; } = string.Empty;
  21. public string 水分炉温度上限值 { get; set; } = string.Empty;
  22. public string 水分炉温度下限值 { get; set; } = string.Empty;
  23. public string 冷却室离心风机过载上限值 { get; set; } = string.Empty;
  24. public string 固化炉温度上限值 { get; set; } = string.Empty;
  25. public string 固化炉温度下限值 { get; set; } = string.Empty;
  26. public string 输送机设定速度 { get; set; } = string.Empty;
  27. public string 输送机设定频率 { get; set; } = string.Empty;
  28. }
  29. }