- using YLShipBuildLandMap.Entity;
- using YLShipBuildLandMap.Entity.ViewModel.SystemSetting;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Services.SystemSetting
- {
- public interface IFunctionCodeService
- {
- List<string> GetUserFunctionCodes(Guid userID);
- List<FunctionCodeView> GetFunctionCodeList();
- List<string> GetRoleFunctionCode(Guid roleID);
- }
- }
|