using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_IWMSPart; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_WMSPart { /// /// 货位状态变动记录业务实现层 /// public partial class LocationStatusChangeRecordService : ServiceBase>, ILocationStatusChangeRecordService { public LocationStatusChangeRecordService(IRepository BaseDal) : base(BaseDal) { } public IRepository Repository => BaseDal; } }