using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_IBasicService; using WIDESEA_Model.Models; namespace WIDESEA_BasicService { /// /// 托盘编码信息服务实现类 /// public class PalletCodeInfoService : ServiceBase>, IPalletCodeInfoService { /// /// 构造函数 /// /// 基础数据访问对象 public PalletCodeInfoService(IRepository baseDal) : base(baseDal) { } /// /// 获取托盘编码信息仓储接口 /// public IRepository Repository => BaseDal; } }