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.
17 lines
550 B
C#
17 lines
550 B
C#
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);
|
|
}
|
|
} |