12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace BLL.Dto.DataDto
- {
- public class QueryDataResultDto : BaseDto
- {
- 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; }
- }
- }
|