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.
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
|
|
|
|
|
|
public interface ISysAppService
|
|
|
|
|
{
|
|
|
|
|
Task AddApp(AddAppInput input);
|
|
|
|
|
Task DeleteApp(DeleteAppInput input);
|
|
|
|
|
Task<SysApp> GetApp([FromQuery] QueryAppInput input);
|
|
|
|
|
Task<dynamic> GetAppList([FromQuery] AppInput input);
|
|
|
|
|
Task<dynamic> GetLoginApps(long userId);
|
|
|
|
|
Task<dynamic> QueryAppPageList([FromQuery] AppInput input);
|
|
|
|
|
Task SetAsDefault(SetDefaultAppInput input);
|
|
|
|
|
Task UpdateApp(UpdateAppInput input);
|
|
|
|
|
Task ChangeUserAppStatus(UpdateAppInput input);
|
|
|
|
|
}
|