using SqlSugar; namespace EInk.Models { [SugarTable("product")] public class InitLot2Model { [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public int id { get; set; } [SugarColumn(ColumnName = "productno")] public string productno { get; set; } [SugarColumn(ColumnName = "station")] public string station { get; set; } [SugarColumn(ColumnName = "pattern")] public string pattern { get; set; } [SugarColumn(ColumnName = "result")] public string result { get; set; } [SugarColumn(ColumnName = "detail")] public string detail { get; set; } [SugarColumn(ColumnName = "created_at")] public DateTime created_at { get; set; } } }