Lot2Lot3Model.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using SqlSugar;
  2. namespace EInk.Models
  3. {
  4. [SugarTable("lot2lot3_info")]
  5. public class Lot2Lot3Model
  6. {
  7. [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
  8. public long id { get; set; }
  9. [SugarColumn(ColumnName = "lot_id", ColumnDataType = StaticConfig.CodeFirst_BigString)]
  10. public string lot_id { get; set; }
  11. [SugarColumn(ColumnName = "product_no", ColumnDataType = StaticConfig.CodeFirst_BigString)]
  12. public string product_no { get; set; }
  13. [SugarColumn(ColumnName = "product_id")]
  14. public long product_id { get; set; }
  15. [SugarColumn(ColumnName = "is_send")]
  16. public int is_send { get; set; }
  17. [SugarColumn(ColumnName = "is_repeatupload")]
  18. public int is_repeatupload { get; set; }
  19. [SugarColumn(ColumnName = "create_time")]
  20. public DateTime create_time { get; set; }
  21. [SugarColumn(ColumnName = "send_time")]
  22. public DateTime send_time { get; set; }
  23. [SugarColumn(ColumnName = "operation_time")]
  24. public DateTime operation_time { get; set; }
  25. [SugarColumn(ColumnName = "content", ColumnDataType = StaticConfig.CodeFirst_BigString)]
  26. public string content { get; set; }
  27. }
  28. }