Lot2Lot3Model.cs 897 B

1234567891011121314151617181920212223242526272829303132
  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 int id { get; set; }
  9. [SugarColumn(ColumnName = "lot_id")]
  10. public string lot_id { get; set; }
  11. [SugarColumn(ColumnName = "is_send")]
  12. public int is_send { get; set; }
  13. [SugarColumn(ColumnName = "content")]
  14. public string content { get; set; }
  15. [SugarColumn(ColumnName = "create_time")]
  16. public DateTime create_time { get; set; }
  17. [SugarColumn(ColumnName = "send_time")]
  18. public DateTime send_time { get; set; }
  19. [SugarColumn(ColumnName = "product_no")]
  20. public string product_no { get; set; }
  21. [SugarColumn(ColumnName = "product_id")]
  22. public int product_id { get; set; }
  23. }
  24. }