123456789101112131415161718 |
- using System.Threading.Tasks;
- using GxPress.Request.Navigation;
- namespace GxPress.Service.Interface.Navigation
- {
- public interface IMiddleLableService : IService
- {
- Task<bool> InsertAsync(MiddleLableInRequest request);
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- Task<bool> DeleteAsync(int id);
- Task<bool> UpdateAsync(MiddleLableUpRequest request);
- }
- }
|