using System.Threading.Tasks; using GxPress.Request.Navigation; namespace GxPress.Service.Interface.Navigation { public interface IMiddleLableService : IService { Task InsertAsync(MiddleLableInRequest request); /// /// 删除 /// /// /// Task DeleteAsync(int id); Task UpdateAsync(MiddleLableUpRequest request); } }