You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Service/User/ISysDataUserMenu.cs

13 lines
341 B
C#

2 years ago
using Myshipping.Core.Service.User.Dto;
using System.Collections.Generic;
2 years ago
using System.Threading.Tasks;
namespace Myshipping.Core.Service;
public interface ISysDataUserMenu
{
2 years ago
Task GrantData(SysDataUserMenuDto input);
Task GrantRightData(RightList input);
1 year ago
Task<List<long>> GetDataScopeList(long menuid,bool isedit =false);
2 years ago
}