| 1234567891011121314151617181920212223242526 |
- 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_engine")]
- public class TEngine
- {
- [SugarColumn(IsPrimaryKey = true)]
- public int EngineId { get; set; }
- [SugarColumn(IsNullable = true)]
- public string factory_id { get; set; }
- [SugarColumn(IsNullable = true)]
- public string factory_id_2 { get; set; }
- [SugarColumn(IsIgnore = true)]
- public List<TBoard> boards { get; set; }
- }
- }
|