using Microsoft.AspNetCore.Mvc; using WIDESEA_DTO.Basic; namespace WIDESEA_IStorageBasicService; public interface IBoxingInfoService : IService { Task AddGroupPlateAsync(GroupPlate groupPlate); Task GetPalletCodeInfo(string palletCode); Task DeleteGroupPlateAsync(GroupPlate groupPlate); }