TPrewarning.cs 802 B

12345678910111213141516171819202122232425262728
  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 overproof { get; set; }
  18. public int total { get; set; }
  19. public int overproofrate { get; set; }
  20. public int overproof_alert { get; set; }
  21. public int overproof_2 { get; set; }
  22. public int overproofrate_2 { get; set; }
  23. public int continueoverproof { get; set; }
  24. }
  25. }