QueryDataResultDto.cs 819 B

12345678910111213141516171819202122232425262728293031
  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.DataDto
  7. {
  8. public class QueryDataResultDto : BaseDto
  9. {
  10. public DateTime InsertTime { get; set; }
  11. public string 脱脂喷淋泵压力值 { get; set; }
  12. public string 脱脂pH值 { get; set; }
  13. public string 陶化pH值 { get; set; }
  14. public string 粗洗喷淋泵压力值 { get; set; }
  15. public string 陶化喷淋泵压力值 { 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. }
  22. }