| 1234567891011121314151617181920212223 |
- 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<TNozzle> nozzles { get; set; }
- }
- }
|