| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_DTO.Basic; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseRepository; |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_Model.Models; |
| | |
| | | public interface IKLSLocationInfoService : IService<Dt_KLSLocationInfo> |
| | | { |
| | | public IRepository<Dt_KLSLocationInfo> Repository { get; } |
| | | |
| | | WebResponseContent InitializationLocation(InitializationLocationDTO initializationLocationDTO); |
| | | /// <summary> |
| | | /// è·åå¯ç¨ç©ºè´§ä½ |
| | | /// </summary> |
| | | /// <param name="AreaCode"></param> |
| | | /// <returns></returns> |
| | | Dt_KLSLocationInfo GetFreeLocationInfo(string AreaCode, int containerType); |
| | | } |
| | | } |