using Myshipping.Core; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; using Myshipping.Application.Entity; using Myshipping.Core.Entity; namespace Myshipping.Core.Service { public interface IDjyApiAuthService { Task<dynamic> Page([FromQuery] QueryDjyApiAuthInput input); Task<long> Save(SaveDjyApiAuthInput input); Task Delete(GetDjyApiAuthInput input); Task<DjyApiAuth> Get([FromQuery] GetDjyApiAuthInput input); //Task<dynamic> List([FromQuery] QueryDjyApiAuthInput input); } }