| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Common.LocationEnum; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseServices; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_IRecordService |
| | | { |
| | | /// <summary> |
| | | /// 货位状态变更记录服务接口 |
| | | /// </summary> |
| | | public interface ILocationStatusChangeRecordService : IService<Dt_LocationStatusChangeRecord> |
| | | { |
| | | /// <summary> |
| | | /// 获取货位状态变更记录仓储接口 |
| | | /// </summary> |
| | | IRepository<Dt_LocationStatusChangeRecord> Repository { get; } |
| | | } |
| | | } |