TBoard.cs 541 B

1234567891011121314151617181920212223
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EasyTemplate.Tool.Entity.App
  8. {
  9. [SugarTable("t_board")]
  10. public class TBoard
  11. {
  12. [SugarColumn(IsPrimaryKey = true)]
  13. public int BoardId { get; set; }
  14. public int EngineId { get; set; }
  15. [SugarColumn(IsNullable = true)]
  16. public string ip { get; set; }
  17. [SugarColumn(IsIgnore = true)]
  18. public List<TNozzle> nozzles { get; set; }
  19. }
  20. }