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.
BookingHeChuan/Myshipping.Application/Service/BookingLabel/IBookingLabelService.cs

19 lines
471 B
C#

6 months ago
using Myshipping.Application.Service.BookingLabel.Dto;
6 months ago
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.Application
{
6 months ago
public interface IBookingLabelService
6 months ago
{
6 months ago
Task<List<BookingLabelBaseDto>> List(int? scope);
/// <summary>
/// 设定标签
/// </summary>
/// <param name="input">请求参数</param>
/// <returns></returns>
Task SetLabel(BindLabelDto input);
6 months ago
}
}