UnitStrategyName.cs 482 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WebAPIBase.NetCore.BusinessCore
  7. {
  8. public enum UnitStrategyName
  9. {
  10. UnitCode,
  11. UnitCodeIn,
  12. UnderUnitCode,
  13. ParentUnitCode,
  14. UnitName,
  15. RelaCode,
  16. UnitType,
  17. SubjectSetCode,
  18. SelfAccount,
  19. OnlyHasUser,
  20. SortID,
  21. ProjectCode,
  22. ExpandParentUnitCode
  23. }
  24. }