| 12345678910111213141516171819202122232425262728 |
- 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 overproof { get; set; }
- public int total { get; set; }
- public int overproofrate { get; set; }
- public int overproof_alert { get; set; }
- public int overproof_2 { get; set; }
- public int overproofrate_2 { get; set; }
- public int continueoverproof { get; set; }
- }
- }
|