using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_DTO.Basic;
|
|
namespace WIDESEA_IStorageBasicService;
|
|
public interface IBoxingInfoService : IService<DtBoxingInfo>
|
{
|
Task<WebResponseContent> AddGroupPlateAsync(GroupPlate groupPlate);
|
|
Task<WebResponseContent> DeleteGroupPlateAsync(GroupPlate groupPlate);
|
}
|