using Microsoft.EntityFrameworkCore.Metadata.Internal; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EasyTemplate.Tool.Entity.App { [SugarTable("t_prewarning")] public class TPrewarning { [SugarColumn(IsPrimaryKey = true)] public DateOnly date { get; set; } [SugarColumn(IsPrimaryKey = true)] public int nozzle { get; set; } public int total { get; set; } /// /// 超标数量 /// public int overproof { get; set; } /// /// 严重超标数量 /// public int overproof_alert { get; set; } /// /// 超标率 /// public int overproofrate { get; set; } /// /// 严重超标率 /// public int overproofrate_alert { get; set; } /// /// 超标数量(GD_ZSH) /// public int overproof_2 { get; set; } /// /// 超标率(GD_ZSH) /// public int overproofrate_2 { get; set; } public int continueoverproof { get; set; } } }