UpdateRecipeDto.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BLL.Dto.RecipeDto
  7. {
  8. public class UpdateRecipeDto : BaseDto
  9. {
  10. public string 产品类型 { get; set; } = string.Empty;
  11. public string 脱脂设定压力上限值 { get; set; } = string.Empty;
  12. public string 脱脂设定压力下限值 { get; set; } = string.Empty;
  13. public string 粗洗喷淋泵过载上限值 { get; set; } = string.Empty;
  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. }
  26. }