| 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_nozzle")]
- public class TNozzle
- {
- [SugarColumn(IsPrimaryKey = true)]
- public int NozzleId { get; set; }
- public int BoardId { get; set; }
- public int node { get; set; }
- public int product { get; set; }
- public bool disable { get; set; }
- [SugarColumn(IsNullable = true)]
- public string mncode { get; set; }
- }
- }
|