TNozzle.cs 577 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_nozzle")]
  10. public class TNozzle
  11. {
  12. [SugarColumn(IsPrimaryKey = true)]
  13. public int NozzleId { get; set; }
  14. public int BoardId { get; set; }
  15. public int node { get; set; }
  16. public int product { get; set; }
  17. public bool disable { get; set; }
  18. [SugarColumn(IsNullable = true)]
  19. public string mncode { get; set; }
  20. }
  21. }