Lot2Lot3Model.cs 1.0 KB

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 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 = "create_time")]
  18. public DateTime create_time { get; set; }
  19. [SugarColumn(ColumnName = "send_time")]
  20. public DateTime send_time { get; set; }
  21. [SugarColumn(ColumnName = "content", ColumnDataType = StaticConfig.CodeFirst_BigString)]
  22. public string content { get; set; }
  23. }
  24. }