TPrewarning.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using Microsoft.EntityFrameworkCore.Metadata.Internal;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace EasyTemplate.Tool.Entity.App
  9. {
  10. [SugarTable("t_prewarning")]
  11. public class TPrewarning
  12. {
  13. [SugarColumn(IsPrimaryKey = true)]
  14. public DateOnly date { get; set; }
  15. [SugarColumn(IsPrimaryKey = true)]
  16. public int nozzle { get; set; }
  17. public int total { get; set; }
  18. /// <summary>
  19. /// 超标数量
  20. /// </summary>
  21. public int overproof { get; set; }
  22. /// <summary>
  23. /// 严重超标数量
  24. /// </summary>
  25. public int overproof_alert { get; set; }
  26. /// <summary>
  27. /// 超标率
  28. /// </summary>
  29. public int overproofrate { get; set; }
  30. /// <summary>
  31. /// 严重超标率
  32. /// </summary>
  33. public int overproofrate_alert { get; set; }
  34. /// <summary>
  35. /// 超标数量(GD_ZSH)
  36. /// </summary>
  37. public int overproof_2 { get; set; }
  38. /// <summary>
  39. /// 超标率(GD_ZSH)
  40. /// </summary>
  41. public int overproofrate_2 { get; set; }
  42. public int continueoverproof { get; set; }
  43. }
  44. }