12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace BLL.Dto.RecipeDto
- {
- public class QueryRecipeResultDto : BaseDto
- {
- public string 产品类型 { get; set; } = string.Empty;
- public string 脱脂设定压力上限值 { get; set; } = string.Empty;
- public string 脱脂设定压力下限值 { get; set; } = string.Empty;
- public string 粗洗喷淋泵过载上限值 { get; set; } = string.Empty;
- public string 粗洗液位下限值 { get; set; } = string.Empty;
- public string 陶化喷淋泵过载上限值 { get; set; } = string.Empty;
- public string 精洗喷淋泵过载上限值 { get; set; } = string.Empty;
- public string 精洗液位下限值 { get; set; } = string.Empty;
- public string 水分炉温度上限值 { get; set; } = string.Empty;
- public string 水分炉温度下限值 { get; set; } = string.Empty;
- public string 冷却室离心风机过载上限值 { get; set; } = string.Empty;
- public string 固化炉温度上限值 { get; set; } = string.Empty;
- public string 固化炉温度下限值 { get; set; } = string.Empty;
- public string 输送机设定速度 { get; set; } = string.Empty;
- public string 输送机设定频率 { get; set; } = string.Empty;
- }
- }
|