using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_Model.Models; namespace WIDESEA_IBasicService { /// /// 托盘编码信息服务接口 /// public interface IPalletCodeInfoService : IService { /// /// 获取托盘编码信息仓储接口 /// IRepository Repository { get; } } }