using Myshipping.Core; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; using Myshipping.Core.Entity; namespace Myshipping.Core.Service { public interface IDjyMessageService { Task> Page([FromQuery] DjyMessageQueryInput input); Task Save(DjyMessageSaveInput input); Task Delete(long id); Task Get(long id); Task Read(long id); Task Process(DjyMessageProcessInput input); } }