IFunctionCodeService.cs 436 B

123456789101112131415
  1. using YLShipBuildLandMap.Entity;
  2. using YLShipBuildLandMap.Entity.ViewModel.SystemSetting;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace YLShipBuildLandMap.Services.SystemSetting
  7. {
  8. public interface IFunctionCodeService
  9. {
  10. List<string> GetUserFunctionCodes(Guid userID);
  11. List<FunctionCodeView> GetFunctionCodeList();
  12. List<string> GetRoleFunctionCode(Guid roleID);
  13. }
  14. }