using Myshipping.Application.Service.BookingLabel.Dto; using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Application { public interface IBookingLabelService { Task> List(int? scope); /// /// 设定标签 /// /// 请求参数 /// Task SetLabel(BindLabelDto input); } }