InitLot2Model.cs 769 B

1234567891011121314151617181920212223242526272829
  1. using SqlSugar;
  2. namespace EInk.Models
  3. {
  4. [SugarTable("product")]
  5. public class InitLot2Model
  6. {
  7. [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
  8. public int id { get; set; }
  9. [SugarColumn(ColumnName = "productno")]
  10. public string productno { get; set; }
  11. [SugarColumn(ColumnName = "station")]
  12. public string station { get; set; }
  13. [SugarColumn(ColumnName = "pattern")]
  14. public string pattern { get; set; }
  15. [SugarColumn(ColumnName = "result")]
  16. public string result { get; set; }
  17. [SugarColumn(ColumnName = "detail")]
  18. public string detail { get; set; }
  19. [SugarColumn(ColumnName = "created_at")]
  20. public DateTime created_at { get; set; }
  21. }
  22. }