SYS09_BMDIREntity.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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 SnapshotWinFormsApp.Entities.OldHotline;
  8. [SugarTable("SYS09_BMDIR")]
  9. public class SYS09_BMDIREntity : OldBaseEntity
  10. {
  11. [SugarColumn(ColumnName = "SBM_ID")]
  12. public override string Id { get => base.Id; set => base.Id = value; }
  13. //public string SBM_ID { get; set; }
  14. public string SBM_Name { get; set; }
  15. public string SBM_Code { get; set; }
  16. public string SBM_PID { get; set; }
  17. public string SBM_PName { get; set; }
  18. public string SBM_Flag { get; set; }
  19. public string SBM_Grade { get; set; }
  20. public string SBM_Order { get; set; }
  21. public string SBM_PY { get; set; }
  22. public string SBM_TypeName { get; set; }
  23. public string SBM_SimpleName { get; set; }
  24. public string SBM_NatureID { get; set; }
  25. public string SBM_FirstBMID { get; set; }
  26. public string SBM_DelFlag { get; set; }
  27. public string SBM_FirstBMName { get; set; }
  28. public string SBM_TwoBMID { get; set; }
  29. public string SBM_TwoBMName { get; set; }
  30. public string SBM_ThreeBMID { get; set; }
  31. public string SBM_ThreeBMName { get; set; }
  32. }