using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EasyTemplate.Tool.Entity.App { [SugarTable("t_board")] public class TBoard { [SugarColumn(IsPrimaryKey = true)] public int BoardId { get; set; } public int EngineId { get; set; } [SugarColumn(IsNullable = true)] public string ip { get; set; } [SugarColumn(IsIgnore = true)] public List nozzles { get; set; } } }